Hi, I noticed that my adapter.SaveEntity(someEntity) is not working properly. Is it a bug from LLBLGen?
The scenario is like following:
I have an entity, say CategoryEntity. It has a bunch of fields inside, 2 of which are defined in SQL as
LastReceivedTime (datetime, null)
LastSentTime (datetime, null)
Now, in the code i called adapter.SaveEntity(categoryEntity) to create a new category, left LastReceivedTime and LastSentTime both to be null, expecting them not to be set in database.
Actually I am getting 1790-01-01 for LastReceivedTime and null for LastSentTime. I've double checked the passed in fields, LastReceivedTime = LastSentTime = null. Why my LastReceivedTime get changed?? Did I do something wrong?
Also, not only on these 2 fields, I have some other fields being assigned value even though they were passed in as null.
Thanks