We started to use .NET version of OrmLite in our C# project that uses SQL Server 2008 R2 Express storage. https://github.com/ServiceStack/ServiceStack.OrmLite
Now we discovered that it is not possible to save Unicode characters to the table by using this ORM mapper with SQL Server.
We need multilingual application (so setting specific LOCALE in SQL Server is not the solution).
We also tested that using plain ADO.NET all works fine!
We also tried to set configuration option:
OrmLiteConfig.DialectProvider.UseUnicode = true;
No changes at all!
(I think it's related only to table creation not string saving...)