I wonder, why SqlDateTime.MinValue is not the same as DateTime.MinValue?
1753 was the date of the first adopter of the Gregorian calendar (England). As to why this was chosen over 01/01/0001 - it is no doubt legacy from when SQL Server was Sybase back in the 1990s. They must've made the design decision early on and the Microsoft SQL team haven't seen a reason to change it.
Since the explosion of .NET and the integration of it into Sql Server, there is now the DateTime2 object for compatability. If you're an NHibernate user, you can provide this type in your type mappings to avoid DateTime.Min
problems
.NET Dates cater for other calendars besides the Gregorian one:
The JulianCalendar infact pre-dates DateTime.MinValue