Hi i’m trying to update a record with a cyrilic text. But the text get saved as
???
my field is set as nvarchar(max) and in fact if I set the record manually on the db the value is stored correctly.
But when saved from OrmLite it goes crazy.
I never had to deal with cyrilic so I may miss something.
my orm lite poco is
[CompositeIndex(new string[] {"Key", "LanguageId", "ApplicationId"}, Unique = true)]
public class Translation : AuditBase, IHasIntId, IHasId<int>
{
[AutoIncrement]
public int Id { get; set; }
[Reference]
public Application Application { get; set; }
public int ApplicationId { get; set; }
public string Key { get; set; }
[Reference]
public Language Language { get; set; }
public int LanguageId { get; set; }
[CustomField("{NMAX_TEXT}")]
public string Value { get; set; }
}