SQL Server - Guid VS. Long

后端 未结 7 1784
野的像风
野的像风 2020-12-29 00:06

Up until now i\'ve been using the C# \"Guid = Guid.NewGuid();\" method to generate a unique ID that can be stored as the ID field in some of my SQL Server database tables us

7条回答
  •  伪装坚强ぢ
    2020-12-29 01:01

    Consider creating sequential GUID from .NET application:

    http://dotnet-snippets.de/dns/sequential-guid-SID998.aspx

    What are the performance improvement of Sequential Guid over standard Guid?

提交回复
热议问题