up vote 7 down vote favorite
share [g+] share [fb]

What are the most suitable equivalent C# datatypes for the new "date", "time" and "datetimeoffset" datatypes in Sql Server 2008?

link|improve this question

Since all three answers came through almost simultaneously, they all added-up to a coherent solution. In retrospect I think I marked the wrong answer as correct, but they're all correct in a way. I knew the info was on MSDN, but just couldn't find it! – Paul Suart Mar 18 '09 at 8:32
feedback

4 Answers

up vote 2 down vote accepted

This MSDN link should tell you:

Mapping CLR Parameter Data

link|improve this answer
feedback

The new types are supported only if you install .NET Framework 3.5 SP1.

  • SqlDbType.Date

  • SqlDbType.Time

  • SqlDbType.DateTime2

  • SqlDbType.DateTimeOffSet

For exhaustive information, see Date and Time Data in SQL Server 2008

link|improve this answer
feedback

In C# you could use

link|improve this answer
The phrase "most suitable equivalent C# datatypes" makes me think this is what OP might have been looking for. – Dan Mar 17 '09 at 17:09
feedback

In C# the equivalent data types are

DateTime
TimeSpan
DateTimeOffset
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.