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

  • Home
  • SEARCH
  • 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 a SQL Server 2000 database instance that is rarely updated. I also
I have an instance of ActiveMQ running on an externally facing server and exposing
If I have an instance of a System.Timers.Timer that has a long interval -
I have an application which may only have one instance of itself open at
I have a tomcat instance setup but the database connection I have configured in
I have an object instance which I access with the ME as it accesses
I have a MySQL instance running locally on port 3306, but for some legacy
I have an rrule instance e.g. r = rrule(WEEKLY, byweekday=SA, count=10, dtstart=parse('20081001')) where dtstart
I have currently an installed pgsql instance that is running on port 1486 .
I have noticed that my particular instance of Trac is not running quickly and

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.