what is uniqueidentifier (Sql server 2005) equivalent in C# 3.5 datatype ?
Use System.Guid
Example :
public string CustID { get; set; } public System.Guid ActivationCode { get; set;}