I have (at last!) unchecked this fantastic option (thanks guys!), but there seems to be a small buggette.
I have a sql_variant (NOT NULL) column in a table, and the following property getter is defined in the entity class.
However, esEntity.GetSystemObjectRequired doesn't exist.
Code:
/// <summary>
/// Maps to Setting.Value
/// </summary>
virtual public System.Object Value
{
get
{
return base.GetSystemObjectRequired(SettingMetadata.ColumnNames.Value);
}
set
{
if(base.SetSystemObject(SettingMetadata.ColumnNames.Value, value))
{
this.MarkFieldAsModified(SettingMetadata.ColumnNames.Value);
}
}
}