(Adapter with LLBLGen 2.5 on SQL Server 2005)
I fetch an entity and exclude some fields using the ExcludeIncludeFieldsList class.
When I save this entity, the excluded fields seem to be flagged as dirty and they are included in the UPDATE.
See following sample code:
TitleEntity t = new TitleEntity(1);
exclude.Add(TitleFields.Changed);
adapter.FetchEntity(t, null, null, exclude);
t.Name = "Mr ..";
adapter.SaveEntity(t); // both Name, Changed fields are included in UPDATE
How do I prevent 'excluded' fields from the fetch being part of any subsequent SAVE on the same entity instance?