updatedate

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 ...

Rails: Showing the latest deploy date in web app.

I'd like to show in our app when the latest production deploy was made, as a means of showing an ongoing commitment to improvement, etc, etc. Off the top of my head I'm thinking of getting a last_updated_at from one of the files, but I'd like to hear other thoughts. What's the best way to get the date of the latest production deploy ...