我的mysql不显示波兰语字符,我创建了这样的数据库:
CREATE DATABASE mydb
DEFAULT CHARACTER SET utf8
DEFAULT COLLATE utf8_general_ci;
答案 0 :(得分:0)
问题出在实体框架的一边,因为我使用了Migration中的Seed方法来调用它,当使用控制器添加所有内容后,一切正常,我试图将SQL插入普通SQL并成功
这不起作用:
protected override void Seed(WebApplication2.Context context)
{
// This method will be called after migrating to the latest version.
// You can use the DbSet<T>.AddOrUpdate() helper extension method
// to avoid creating duplicate seed data.
context.Persons.Add(new Person { Age = 19, LastName = "ćżół", Name = "Sławek" });
});
}