Hi all,
I want to initialize a DateTime entity to the minimum possible date in TSQL.
(as you all know its 1/1/1753
)
Is there a standard way to represent this date in ASP.NET ?
I mean doing something like DateTime.SQLMinValue
(this doesn't exist), instead of doing
new DateTime(year, month, date)
?
If so, please post it, Thanks!