tags:

views:

128

answers:

3

what is uniqueidentifier (Sql server 2005) equivalent in C# 3.5 datatype ?

+10  A: 

It should be System.Guid or Nullable<Guid>

Jehof
A: 

System.Guid.NewGuid()

KhanS
+4  A: 

There is a page on MSDN called Mapping CLR Parameter Data that answers your question and other similar questions you might have.

Mark Byers