Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
That's almost correct... the Use Nullable Generic option can only be used with value types that are not nullable (structures, integers, doubles, datetimes, etc.). The System.String data type is a reference type, but it still cannot be cast to DBNull.Value. So, instead of using the Nullable Generic option, you'll most likely need to use the "Return Alternate On Null" option, which returns an alternate value if a Null value is encountered. So, the replacement value would most likely be Nothing (or null for C#).
|