作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将我的EF移植到EF Core。新API中似乎没有 HasDefaultSchema 方法。此代码EF Core等效于什么?
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.HasDefaultSchema("Notifications");
}
最佳答案
它是exactly the same作为示例代码。
EF6的唯一区别在于,由于大多数EF Core流利(且不仅限于)方法,它是作为 ModelBuilder
类中RelationalModelBuilderExtensions
类的扩展方法(而不是实例方法)实现的。
为了使用它,请确保您引用了Microsoft.EntityFrameworkCore.Relational nuget并具有using Microsoft.EntityFrameworkCore;
关于entity-framework-core - Entity Framework 核心中的HasDefaultSchema在哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51310255/
我是一名优秀的程序员,十分优秀!