I have a Linq-To-SQL mapping to a column in a SQL table.
This column is type DateTime with default mapping / binding of getdate().
The problem is that Linq-To-SQL tries to insert 12/1/0001 12:00 AM instead of letting SQL do its thing and insert getdate().
Is there a way around this?
Additionally, if the column is allowed to be null, why does 'Linq-to-SQL' try to insert a default value?