Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The problem isn't with your configuring of your field. A business object has a "blanket" property that prevents any NULL values from new records within the business object. It's called AllowNullValuesOnNewRow, and it defaults to False. When it's False, the business object will initialize all columns of a new row to be the .NET default values for the data types (except System.String, which is set to String.Empty rather than Nothing (C# null)). So, if you set that AllowNullValuesOnNewRow property to True, then when you add a new row to the business object, the column values will be left at DBNull.Value.
|