I want to initialize a DateTime object to the lowest possible date in TSQL.
(as you all know him 1/1/1753)
Is there a standard way to represent this date in ASP.NET?
I mean doing something like DateTime.SQLMinValue(this does not exist) instead of doing
new DateTime(year, month, date)?
If so, send it, thanks!
source
share