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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T22:25:04+00:00 2026-05-18T22:25:04+00:00

For instance I have persons, locations and a personlocation table to link the two.

  • 0

For instance I have persons, locations and a personlocation table to link the two. I also have a role and personrole table.

 Tables:

Person (personid, name)

Personlocation (personid, locationid)

Location (locationid, description)

Personrole (personid, roleid)

Role (roleid, description)

EF will give me persons, roles and location entities.

Since EF will NOT generate the personlocation and personrole entity types, they cannot be
used in the query.

QUESTION: how can i add a Person object and return personid and then add that id with 3 roleids into Personrole table/association?

e.g.

Person p = new Person();
p.name = "John"
......
entity.AddToPersons(p);
for(var roleid in Roleid)
entity.AddtoRoles(roleid)?
  • 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-18T22:25:05+00:00Added an answer on May 18, 2026 at 10:25 pm

    EF doesn’t need to map the join tables when there is nothing but the FK’s – that is a good thing. It is smart enough to do a “silent-join” behind the scenes.

    QUESTION: how can i add a Person object and return personid and then add that id with 3 roleids into Personrole table/association?

    You just need to use the “Roles” association on the “Person” entity. You don’t need to add straight to the “Role” table.

    E.g:

    // Create new Person
    Person p = new Person();
    p.Name = "John";
    
    // Create new Role
    Role r = new Role();
    r.Description = "Administrator";
    
    // Add new Role to this new Person
    p.Roles.Add(r);
    
    // Add Person to context (no need to add Role)
    ctx.AddToPersons(p);
    
    // Save Changes
    ctx.SaveChanges();
    

    Entity Framework is pretty smart. It will see there is a new role, add that first, then add a person, then add the record in the join table based on the id for the role that was just created.

    HTH.

    EDIT – In response to comment:

    thx, what if i want to add existing role ( e.g. Roleid = 1, description=”Editor”)

    Very similar to above.

    Just fetch the existing role from the DB, and add it to the person:

    Role r = ctx.Roles.SingleOrDefault(x => x.RoleId == 1 && x.Description == "Editor");
    p.Roles.Add(r);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two tables, Locations and Facilities They map to two classes, public Location
I have an instance of ObservableCollection bound to a WPF listbox with two separate
I have two classes, Car and Person. Car has as one of its members
I have class Person: public class Person : INotifyPropertyChanged { private String name =
Ok, say i have a Person entity which needs to have Persons as property
I have an entity Person: class Person { String name; String phone; @OneToMany(cascade =
For instance I have a string like this : abc123[*]xyz[#]098[~]f9e [*] , [#] and
For instance: I have a purchased a hosting that allows me 10 GB's of
For instance I have a method SomeMethod(Graphics g) { ... } If I will
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined.

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.