I want to create a varchar folumn in SQL should contain N'guid' while guid is a generated Guid by .net (Guid.NewGuid).
What is the length of the varchar I should expect from a Guid? is it a static length?
Should I use nvarchar (will Guid ever use unicode chars)?
varchar(Guid.Length)
PS. I don't want to use SQL row guid data-type, just asked what is Guid.MaxLength