Hi,
I have encountered an issue in LLBLGen whereby, if an entity consists solely of defaults, I cannot save the entity without setting any of it's properties in code. For example, if I have the following table:
Table: Foo
Id : uniqueidentifier -- newid()
TimeStamp : datetime -- getdate()
I should be able to create a record like this:
var foo = new Foo();
adapter.SaveEntity(foo, true); // true to fetch the record back with values
However, in this case LLBLGen does not recognize any work needs to be done and SaveEntity results in a no-op.
What am I doing wrong here?
Thanks in advance!
-- Rob