Minimum & Maximum Dates in code
When updating Sql columns that need a minimum or maximum date, consider using the defaults from the System.Data.SqlType namespace:
1: DateTime minDate = SqlDateTime.MinValue.Value
2:
3: // and
4:
5: DateTime maxDate = SqlDateTime.MaxValue.Value
This can be a lot safer than putting hard-coded "magic date" constants in your code.