I hope this is just what I did at my end ...
I have a table in my database configured like this:
column name: widget_guid
data type: uniqueidentifier
allow nulls: false
default value: newid ()
identity: false
row guid: true
When records are created (via LINQ to SQL) that the values ββin this field are formatted as a GUID, but contain all 0
My assumption was that when a new record was created, this column would be autogenerated, as would the auto-increment identifier of the row. Is that not so? Any help would be greatly appreciated.
Thank.
source
share