What value in the SqlDbType
enumeration should I use for the numeric
T-SQL data type?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Decimal.
See this page: http://msdn.microsoft.com/en-us/library/system.data.sqltypes.aspx
I'm pretty sure that
SqlDbType.Decimal
is the closest.