Hi
After fetching an entity, I want to check whether one of my fields (a Int32 field) is null or not.
I found that I can do that by getting my field through the Fields array and checking the IsNull property, but it means that the strong-typed property representing my field remains useless.
I consider the IsNull attribute as part of the data retrieved (since ValueTypes, like Int32, cannot be assigned to null), so I wonder why not having the IsNull property in the Entity level, for each ValueType?
PersonEntity.Age
PersonEntity.AgeIsNull
PersonEntity.HasChildren
PersonEntity.HasChildrenIsNull
.
.
.
or am I missing something here?