NHibernate: Insert and update dates
Using NHibernate, what is the best way to handle InsertDate (a.k.a CreateDate) and UpdateDate columns? For example: public class Customer { public virtual string Name { get; set; } public virtual DateTime InsertDate { get; set; } public virtual DateTime UpdateDate { get; set; } } There are probably multiple ways that ...