Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6596001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:00:53+00:00 2026-05-25T18:00:53+00:00

Is it possible to create a One-to-Many relationship with Code First that uses a

  • 0

Is it possible to create a One-to-Many relationship with Code First that uses a link/join table between them?

public class Foo {
    public int FooId { get; set; }
    // ...

    public int? BarId { get; set; }
    public virtual Bar Bar { get; set; }
}

public class Bar { 
    public int BarId { get; set; }
    // ...

    public virtual ICollection<Foo> Foos { get; set; }
}

I want this to map as follows:

TABLE Foo
    FooId INT PRIMARY KEY
    ...

TABLE Bar
    BarId INT PRIMARY KEY

TABLE FooBar
    FooId INT PRIMARY KEY / FOREIGN KEY
    BarId INT FOREIGN KEY

With this, I would have the ability to make sure Foo only has one Bar, but that Bar could be re-used by many different Foos.

Is this possible with Entity Framework? I would prefer to not have to put the key in Foo itself because I don’t want a nullable foreign key. If it is possible please provide an example using the Fluent API and not the data annotations.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T18:00:53+00:00Added an answer on May 25, 2026 at 6:00 pm

    You can use Entity splitting to achieve this

    public class Foo
    {
        public int FooId { get; set; }
    
        public string Name { get; set; }
    
        public int BarId { get; set; }
    
        public virtual Bar Bar { get; set; }
    }
    

    Then in your custom DbContext class

        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            modelBuilder.Entity<Foo>().HasKey(f => f.FooId);
            modelBuilder.Entity<Foo>()
                .Map(m =>
                         {
                             m.Properties(b => new {b.Name});
                             m.ToTable("Foo");
                         })
                .Map(m =>
                         {
                             m.Properties(b => new {b.BarId});
                             m.ToTable("FooBar");
                         });
    
            modelBuilder.Entity<Foo>().HasRequired(f => f.Bar)
                .WithMany(b => b.Foos)
                .HasForeignKey(f => f.BarId);
    
            modelBuilder.Entity<Bar>().HasKey(b => b.BarId);
            modelBuilder.Entity<Bar>().ToTable("Bar");
        }
    

    The BarId column will be created as a not null column in FooBar table. You can check out Code First in the ADO.NET Entity Framework 4.1 for more details

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What is the best way to create a one to many relationship between two
Possible Duplicate: MySQL Relationships I am trying to create a one to many relationship
is it possible to create a menu similar to the one that appears in
Is it possible to create an index that has as one of its columns
Let's say you have a one-to-many relationship between Users and Orders (where one user
I'm trying to create a One-to-many relationship in Django. In my example, I have
Can any one tell me if its possible to create a stored procedure in
Is it possible to create federated Subversion servers? As in one server at location
Is it possible to create a trigger that will not be in a transaction?
I've mapped two entities using JPA (specifically Hibernate). Those entities have a one-to-many relationship

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.