I'm trying to set a DateTime value column to the sql server side GetUTCDate() function's value.
1. How would this been done? (see ??? in code below)
2. Preferably, in one server trip for the Update only (as opposed to a separate Select trip).
_TestEntity entity=TestEntity(1);
entity.Value="test";
entity.UpdateDate= ??? // GetUTCDate()
entity.Save()
_
Note: This has been discussed in other thread several years back; hopefully, by now it's possible or easier to implement.
Ron