Hi,
i'm not sure if this belongs in the right section, but i've been looking around and can't find an answer.
Is it possible to update a record with the "default" value as specified in the design of the database table ? (using MSSQL2000)
For instance, i have some tables which have a column "last_updated" (datetime, not-null, default = "GetDate()")
Now what i want is when i do a .save() on my Entity, i do not wish to set Entity.LastUpdated = DateTime.Now, but i want the DB to fill in the "default" value (GetDate()), so it always uses the clock of the DB server rather then the clock of the client.
Is this possible with LLBLGen ? (Version 1.0.2005.1)