SecondsAgo

edit

SecondsAgo

Namespace

Summary== Gets a date in the past according to seconds ==Example==DateTime then=3.SecondsAgo(); ==Unit Test

public void SecondsAgoShouldReturnDateTimeAddSecondsNeg3For_3() { var today = DateTime.Now; var then = 3.SecondsAgo(); Assert.Equal(then, DateTime.Now.AddSeconds(-3)); }

Comments

SubSonic 3.0 implements this as an extension on System.Int - 2.x uses a static method on SubSonic.Sugar.Dates.