Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
You cannot use a nullable generic data type with a string because the System.String type is not a value type but a reference type. You can only use the System.Nullable<T> type with value types (int, float, boolean, structures, etc.). So, with string values, you will need to configure the fields to return an alternate value on NULL. Generally, you would configure the string field to return either string.Empty or 'null' when a DBNull.Value value is returned.
|