标签: c# sql-server
我想知道C#中long的等效SQL Server类型是什么。
long
答案 0 :(得分:86)
mapping table很清楚 - BIGINT相当于Int64(在C#中为long。
BIGINT
Int64
答案 1 :(得分:20)
等效类型为bigint - a 64-bit numeric type。
bigint
它符合-2^63到2^63-1范围内的数字 - 与.NET's long data type相同。
-2^63
2^63-1