我正在尝试运行update-database
来迁移对数据库所做的一些更改。
一切顺利,直到出现以下错误:
找不到适用于实体类型“ ReportType”的合适的构造函数。的 以下构造函数具有无法绑定到的参数 实体类型的属性:无法在其中绑定“ id”,“ name” “ ReportType(字符串ID,字符串名称)”。
这是ReportType.cs的代码:
public class ReportType : SmartEnum<ReportType, string>
{
public static readonly ReportType ReportType1 = new ReportType("Blah", "Blah");
public static readonly ReportType ReportType2 = new ReportType("Blah", "Blah");
public static readonly ReportType ReportType3 = new ReportType("Blah", "Blah");
// required for EF, but breaking for SmartEnum
// private ReportType() {}
private ReportType(string id, string name) : base(name, id)
{
}
}
您可以在该代码的注释部分中看到,拥有无参数构造函数通常可以解决EF Core的此问题,但是SmartEnum没有无参数构造函数的基础。
在2018年Arpil 27上对SmartEnum库进行了一次提交,该提交添加了无参数构造函数,因此不会出现此问题,但是在以后的提交中删除了该更改,并且我不确定如果没有它,如何进行操作。
可以在以下位置找到该提交:https://github.com/ardalis/SmartEnum/commit/870012d406609a4a8889fdde2139750dc618d6a9
并已在此提交中删除: https://github.com/ardalis/SmartEnum/commit/1c9bf3ede229fcb561330719cd13af67dcf92ad7
非常感谢您的帮助!
编辑:
根据Ivan的评论,这是我对这个问题的解决方案:
modelBuilder.Entity<Report>()
.Property(p => p.ReportType)
.HasConversion(
p => p.Value,
p =>ReportType.FromValue(p));
答案 0 :(得分:0)
在ApplicationDbContext.cs的OnModelCreating中:
modelBuilder.Entity<Report>()
.Property(p => p.ReportType)
.HasConversion(
p => p.Value,
p =>ReportType.FromValue(p));