Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中选择什么数据类型来表示 SQL Server UniqueIdentifier 类型的最佳数据类型是什么?我打算使用 GUID,但我看到有人使用 varChars。
谢谢
System.Guid 是您所需要的。
您可以在本文中了解 SQL 数据类型的 CLR 等效项:
SQL Server 数据类型及其 .NET Framework 等效项
每当我使用 uniqueidentifier sql 数据类型时,我总是将其映射到 C# 中的 Guid。我想我从来没有见过它做得不同。
GUID 是最佳选择。
GUID 是直接比较。