In C# code I have a variable Guid? name.But,how to initialize this parameter to null,since I cannot assign null for a guid type
views:
19answers:
2
A:
param = New SqlParameter("@GUID_ID", SqlDbType.UniqueIdentifier, 16)
param.Value = DBNull.Value
Mitch Wheat
2010-03-22 07:19:35