I have a table with column Name is nvarchar
In SQL statement i using N prefix to save data with Unicode
Insert into TBL_Name (Name) values(N'Hôm nay đẹp trời')
it's work fine. But i don't know how to save unicode string when using Linq?
Please help me.
Thanks so much!