EF Core:如何在单向关系中指定外键
我正在使用 Entity Framework Core 6
Fluent API 在 .NET Core
项目中配置我的数据库架构。
声明双向关系时,我们可以轻松地指定外键,如下所示:
modelBuilder.Entity<Foo>()
.HasMany(x => x.Bars)
.WithOne(x => x.Foo)
.HasForeignKey(x => x.FooId);
但是,如果我们有一个单向关系,如下所示:
modelBuilder.Entity<Foo>()
.HasOne(x => x.Bar);
我不明白如何指定外键,因为 .HasOne< /code> 方法不会返回具有
.HasForeignKey()
方法的对象。
在这些情况下如何指定外键?
I'm using the Entity Framework Core 6
fluent API to configure my database schema in a .NET Core
project.
When declaring two-way relationships we can easily specify the foreign key like this:
modelBuilder.Entity<Foo>()
.HasMany(x => x.Bars)
.WithOne(x => x.Foo)
.HasForeignKey(x => x.FooId);
However, if we have a one-way only relationship like this:
modelBuilder.Entity<Foo>()
.HasOne(x => x.Bar);
I don't understand how to specify the foreign key, since the .HasOne
method does not return an object that has the .HasForeignKey()
method.
How do you specify the foreign key in these cases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试做这样的事情:
另外这个也许也可以帮助你 检查
Try to do something like this:
Also this one maybe can help you too check
通过 ER 建模思考,您会发现在一对一的关系中,外键的位置可能位于第一个表或第二个表:
或者
当您看到代码但没有得到任何建议时,这是有意义的,因为您定义了位置将会是(哪个表将获得 FK)。
Thinking by ER modeling, you will see that in a relationship one-one, the location of the Foreign key could be at the first table or second table:
Or
It make sense when you see the code and got no suggestions, because you define where it will be (what table will got the FK).