hi Is there any difference between DateTime in c# and DateTime in SQL server?
|
|
|
|
|
|
|
Precision and range (so, everything important ;-p) From MSDN:
|
||||||||
|
|
|
You can also use datetime2 of SQL Server 2008. The precision there is 100ns as well. In fact, it was introduced to match the .NET DateTime precision. |
||
|
|
|
|
Yes. The C# equivalent of the SQL datetime type is SqlDateTime So, define the SQL call (stored procs with parameter collection of course) to use SQLDateTime. On advantage is you can trap any overflow or out of range error building the command rather than at execution time from the database engine. |
||
|
|
