15

在 C# 和 SQL Server 中将 int 转换为 guid 时,我得到不同的值。

在 C# 中,我使用这种方法

public static Guid Int2Guid( int value )
{
    byte[] bytes = new byte[16];
    BitConverter.GetBytes( value ).CopyTo( bytes, 0 );
    return new Guid( bytes );
}

Console.Write( Int2Guid( 1000 ).ToString() );
// writes 000003e8-0000-0000-0000-000000000000

在我使用的 SQL Server 中

select cast(cast(1000 as varbinary(16)) as uniqueidentifier)
-- writes E8030000-0000-0000-0000-000000000000

为什么他们会有不同的行为?

4

2 回答 2

19

发生这种情况是因为 sql server 和 .net 以不同的格式存储 int。这可以解决问题:

select cast(CONVERT(BINARY(16), REVERSE(CONVERT(BINARY(16), 1000))) as uniqueidentifier)
于 2013-10-29T11:05:11.243 回答
3

SQL Server 中每组中的字节对于每组中的前 8 个字节都是“反转的”。检查uniqueidentifier http://technet.microsoft.com/en-us/library/aa223933(v=sql.80).aspx的文档

它指出有两种提供值的方法 - 注意字节的顺序:

字符串格式'6F9619FF-8B86-D011-B42D-00C04FC964FF'

二进制格式 0xff19966f868b11d0b42d00c04fc964ff

于 2013-10-29T11:09:54.807 回答