vote up 6 vote down star

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

flag

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 at 8:32

3 Answers

vote up 2 vote down check

This MSDN link should tell you:

Mapping CLR Parameter Data

link|flag
vote up 3 vote down

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|flag
vote up 1 vote down

In C# you could use

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

Your Answer

Get an OpenID
or

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