I want to create a GUID and store it in the DB.
In C# a guid can be created using Guid.NewGuid(). This creates a 128 bit integer. SQL Server has a uniqueidentifier column which holds a huge hexidecimal number.
Is there a good/preferred way to make C# and SQL Server guids play well together? (i.e. create a guid using Guid.New() and then store it in the database using nvarchar or some other field … or create some hexidecimal number of the form that SQL Server is expecting by some other means)
SQL is expecting the GUID as a string. The following in C# returns a string Sql is expecting.
Something like
is what it should look like in SQL.