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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:21:12+00:00 2026-05-13T07:21:12+00:00

I saw in an earlier post here on stackoverflow a example on many to

  • 0

I saw in an earlier post here on stackoverflow a example on many to many relations. To keep it simple, lets have a look at these classes :

public class Role(){
    public int Id { get; set; }
    public string Rolename { get; set; }
    public string Description { get; set; }
}

public class User(){
    public int Id { get; set; }
    public string Username { get; set; }
    public string Password { get; set; }
    public IList<UsersAndRoles> UsersAndRoles { get; set; }
}

public class UsersAndRoles(){
    public int Id { get; set; }
    public User User { get; set; }
    public Role Role { get; set; }
}

This is freehand so bear with me.

Now what is the best way to make the linq query for these classes. Lets say I want to get all roles with the users attached to them. Can someone help me with this?

  • 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-13T07:21:12+00:00Added an answer on May 13, 2026 at 7:21 am

    Weel, as i want to keep my Entities clean without any database lookups I can’t do it like you sugested.

    I made my entities like this :

    Role entity

    public class Role(){
        public int RoleId { get; set; }
        public string Rolename { get; set; }
        public string Description { get; set; }
        public IList<User> Users { get; set; }
        public Role()
        {
            RoleId = 0;
            Rolename = "";
            Description = "";
            Users = new List<User>();
        }
    }
    

    User entity

    public class User(){
        public int UserId { get; set; }
        public string Username { get; set; }
        public string Password { get; set; }
        public string Email { get; set; }
        public User()
        {
            UserId = 0;
            Username = "";
            Password = "";
            Email = "";
        }
    }
    

    Users and roles entity

    public class UsersAndRoles(){
        public int Id { get; set; }
        public int UserId { get; set; }
        public int RoleId { get; set; }
        public UsersInRoles()
        {
            Id = 0;
            UserId = 0;
            RoleId = 0;
        }
    }
    

    Now from my repository I try to do the folowing :

    public IList<Role> GetRolesAndUsers()
    {
        //--- Load all roles
        var roles = base.All<Role>();
    
        //--- Run through all roles and add the users to the roles.
        foreach (var role in roles)
        {
            //--- Load the users in the given role
            var users = (from u in base.All<User>()
                         join ur in base.All<UsersInRoles>() on role.RoleId equals ur.RoleId
                         where u.UserId == ur.UserId
                         select u).ToList();
    
            //--- Run through the list of users and add the user to the role
            foreach (var user in users)
            {
                role.Users.Add(user);
            }
        }
        //--- Return roles and users
        return roles.ToList();
    }
    

    However the users does not get added to the roles even though I can se the users get loaded when I step through the code using debug.

    What am I missing here ?

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The SQL you need is something like: SELECT category_name, COUNT(*)… May 14, 2026 at 9:13 pm
  • Editorial Team
    Editorial Team added an answer Try Buttonator or IconFinder. May 14, 2026 at 9:13 pm
  • Editorial Team
    Editorial Team added an answer PDF Renderer is a LGPL licensed pure-java library that makes… May 14, 2026 at 9:13 pm

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.