I am using the seed method to populate the database. Some of the objects have properties in cyrillic. Example:
context.Wines.AddOrUpdate(new Wine()
{
Id = 1,
Name = "Шардоне",
etc........................................
The objects are properly created in the database, however when I check the database in MS SQL management studio instead of the wine's name being "Шардоне", it is displayed as "Øàðäîíå".
Strangely, when I create the wine in my Startup class like this:
var db = new WineSystemDbContext();
var ShardoneWine = new Wine { Name = "Шардоне};
db.Wines.Add(ShardoneWine);
everything is displayed properly in cyrillic in the database.
Do you have an idea what may cause this?