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 84825
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T21:59:33+00:00 2026-05-10T21:59:33+00:00

I have two entities Foo and Bar with a Many to Many relationship between

  • 0

I have two entities Foo and Bar with a Many to Many relationship between them.

Let’s say there is no semantic argument for why Foo might be "responsible" for the many to many relationship, but we arbitrarily decide that Foo is responsible for the relation (i.e., in NHibernate we would mark Bar as Inverse)

That’s all well and good from a database perspective, but my entity APIs reveal a problem.

// Responsible for the relation public class Foo {     List<Bar> Bars = new List<Bar>();      public void AddBar(Bar bar)     {         Bars.Add(bar);         bar.AddFoo(this);     } }  public class Bar {     List<Foo> Foos = new List<Foo>();      // This shouldn't exist.     public void AddFoo(Foo foo)     {         Foos.Add(foo);         foo.AddBar(this); // Inf Recursion     } } 

If we’ve decided that Foo is responsible for this relationship, how do I update the associated collection in Bar without creating a public Bar.AddFoo() method which shouldn’t even exist?

I feel like I should be able to maintain the integrity of my domain model without resorting to having to reload these entities from the DB after an operation such as this.

UPDATE: Code tweak inspired by commenter.

  • 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. 2026-05-10T21:59:33+00:00Added an answer on May 10, 2026 at 9:59 pm

    You said that one side will ‘own’ the relationship. Make this method public. The other associations (or add methods) can be made internal to avoid consumers from interacting with it directly.

    public class Foo {      private IList<Bar> Bars {get;set;}     public void AddBar(Bar bar)    {       Bars.Add(bar);       bar.Foos.Add(this);    } }  public class Bar {    internal IList<Foo> Foos {get;set;} } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 78k
  • Answers 78k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Every so often I see a question on SO which… May 11, 2026 at 3:57 pm
  • added an answer One possible solution is: Add a DATE field that represents… May 11, 2026 at 3:57 pm
  • added an answer Turns out you just need to get the Ruby source… May 11, 2026 at 3:57 pm

Related Questions

I have two entities, each from a different database and therefore different edmx files.
I have two entities, Entity1 and Entity2, on a one to many relationship. On
I have two tables Group and Customer and of course two entities Group and
I have a situation where I have two entities that share a primary key

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.