In a model class, there is a field
public DateTime LastUpdateTime { get; set; }
It is supposed to be set to the value of GetDate() every time the record is updated, how to do?
In a model class, there is a field
public DateTime LastUpdateTime { get; set; }
It is supposed to be set to the value of GetDate() every time the record is updated, how to do?