views:

17

answers:

1

Is there a static value defined in the .net framework library similar to DateTime.MinValue and DateTime.MaxValue except with values that reflect Sql Server's datetime datatype range? (January 1, 1753 - December 31, 9999)

+1  A: 

SqlDateTime.MinValue
SqlDateTime.MaxValue

Joel Rondeau
thats it thanks!
BC
FYI, they are contained in the System.Data.SqlTypes namespace
Pete Amundson