Hi,
How to assign "null" values to bit field using supported way in MS CRM 4.0 ?
Thanks,
Srikanth Reddy
If you're using .Net code, set the IsNull and IsNullSpecified properties (of the CrmBoolean) class to true:
CrmBoolean b = new CrmBoolean(); b.IsNull = true; b.IsNullSpecified = true;