我正在尝试使用dnxcore50将EF6与MySql数据库一起使用。数据库存储库的代码已经完成,我正在尝试将其移动到新框架,但我有很多缺少以下内容的参考资料:
EntityTypeConfiguration
DbContext
MySql.Data.Entity.MySqlEFConfiguration
DbConfigurationType
DbSet
and more
这是我的project.json
"dependencies": {
"EntityFramework": "6.1.3",
"System.Data.Entity.Repository": "2.0.0.1",
"System.Collections": "4.0.10-beta-23109",
"System.Linq.Expressions": "4.0.10-beta-23109",
"System.Threading.Tasks": "4.0.10-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"WNCT.Domain": "1.0.0-*",
"MySql.Data.Entity.EF6": "6.8.3",
"Microsoft.AspNet.Diagnostics.Entity": "7.0.0-*",
"MySql.Data.Entities": "6.8.3",
"StructureMap": "3.1.6.186",
"MySql.Web": "6.9.7",
"MySql.Data": "6.9.7"
},
"frameworks": {
"dnxcore50": {
"dependencies": { }
}
}
我不能幻想我错过了什么。有谁知道如何设置它?