Hello --
I'm using C#, .Net 1.1, LLBLGen 1.0.2005.1 (June 19th, 2006), Self Servicing (2 classes)
I'm trying to find a way to have a common base class or routine test non-nullable fields to see if their current value is null, before attempting to save the entity to the database.
I was thinking that it would be fairly easy using TestCurrentFieldValueForNull, but that method only seems to be in the generated code and not in an interface or entity base class.
Is there a base class or interface that allows me to test if the current field value is null? I saw that TestCurrentFieldValueForNull calls base.CheckIfCurrentFieldValueIsNull(int x), but that method is protected.
(I know I'm using an older version and release of LLBLGen, but it doesn't look like TestCurrentFieldValueForNull has changed in 2.0.x.)
Thanks.