EF Core:如何在单向关系中指定外键

发布于 2025-01-10 18:59:09 字数 521 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倒数 2025-01-17 18:59:09

尝试做这样的事情:

  modelBuilder.Entity<Foo>()
            .HasOne(x => x.Bar)
            .WithOne()
            .HasForeignKey(e => e.Whatever);

另外这个也许也可以帮助你 检查

Try to do something like this:

  modelBuilder.Entity<Foo>()
            .HasOne(x => x.Bar)
            .WithOne()
            .HasForeignKey(e => e.Whatever);

Also this one maybe can help you too check

玉环 2025-01-17 18:59:09

通过 ER 建模思考,您会发现在一对一的关系中,外键的位置可能位于第一个表或第二个表:

modelBuilder.Entity<Foo>()
        .HasOne(e => e.Bar)
        .WithOne(e => e.Foo)
        .HasForeignKey<Foo>(e => e.BarId);

或者

modelBuilder.Entity<Foo>()
        .HasOne(e => e.Bar)
        .WithOne(e => e.Foo)
        .HasForeignKey<Bar>(e => e.FooId);

当您看到代码但没有得到任何建议时,这是有意义的,因为您定义了位置将会是(哪个表将获得 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:

modelBuilder.Entity<Foo>()
        .HasOne(e => e.Bar)
        .WithOne(e => e.Foo)
        .HasForeignKey<Foo>(e => e.BarId);

Or

modelBuilder.Entity<Foo>()
        .HasOne(e => e.Bar)
        .WithOne(e => e.Foo)
        .HasForeignKey<Bar>(e => e.FooId);

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文