我们有一个使用psql数据库的.Net Core 2.0 API。 更新到.Net Core 2.1时,它停止构建并返回以下错误:
'IMutableEntityType' does not contain a definition for 'Scaffolding' and no extension method 'Scaffolding' accepting a first argument of type 'IMutableEntityType' could be found (are you missing a using directive or an assembly reference?)
此扩展方法不是供外部使用的,但我们需要它在运行时更改实体架构。
答案 0 :(得分:0)
这是一个班轮,但是我花了一些时间才发现我必须更换
builder.Entity(type).Metadata.Scaffolding();
到
builder.Entity(type).Metadata.Relational();
我希望它可以帮助某人。