SyntaxFix
Write A Post
Hire A Developer
Questions
new Guid() makes an "empty" all-0 guid (00000000-0000-0000-0000-000000000000 is not very useful).
new Guid()
Guid.NewGuid() makes an actual guid with a unique value, what you probably want.
Guid.NewGuid()