views:

61

answers:

1

Is there any way that I can create the type time in C# to be compatible with the type time of the SQL server?

+6  A: 

According to MSDN:

Mapping CLR Parameter Data

You're looking for the TimeSpan type.

Justin Niessner