对于 C # long 类型,等效的 SQLServer 类型是什么?

我想知道对于 C # 中的 long,相应的 SQLServer 类型是什么。

76773 次浏览

The equivalent type is bigint which is a 64-bit numeric type.

It fits numbers in the range from -2^63 to 2^63-1 which is the same as the C# long type.

The mapping table is clear - BIGINT is the equivalent of Int64 (which is long in C#).