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
なぜ彼らは異なる振る舞いをするのでしょうか?