What value in the SqlDbType enumeration should I use for the numeric T-SQL data type?
2 Answers
Decimal.
See this page: http://msdn.microsoft.com/en-us/library/system.data.sqltypes.aspx
1 Comment
LukeH
Note that the above link shows
SqlType mappings, not SqlDbType, although in this case the mapping is the same, NUMERIC to Decimal. Here are the full mappings: msdn.microsoft.com/en-us/library/cc716729.aspx