vote up 2 vote down star

Hi

What is the best data type to choose in C# for representing a SQL Serer UniqueIdentifier type? I'm was going to use a GUID but I've seen people using varChars.

Thanks

flag

4 Answers

vote up 3 vote down check

System.Guid is what you need.

You can learn about CLR equivalents of SQL data types in this article:

SQL Server Data Types and Their .NET Framework Equivalents

link|flag
correct answer due to the helpful link also provided. – Davy Nov 1 at 14:44
vote up 4 vote down

Whenever I use a uniqueidentifier sql data type I always map it to a Guid in C#. I don't think I've ever seen it done differently.

link|flag
1  
+1. People using varchars to represent GUIDs or strings to represent UNIQUEIDENTIFIER are using the wrong type. – Dave Markle Nov 1 at 13:25
Thanks - vote up. – Davy Nov 1 at 14:45
vote up 2 vote down

GUID is the best choice.

link|flag
Thanks - vote up – Davy Nov 2 at 0:51
vote up 1 vote down

GUID is the direct comparison.

link|flag
Thanks - vote up – Davy Nov 1 at 14:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.