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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:12:29+00:00 2026-05-28T15:12:29+00:00

I am having the scenario with multiple linq include methods with table object associations.

  • 0

I am having the scenario with multiple linq include methods with table object associations.
Suppose the scenario is:

User has Groups
User has Permissions
User has Vehicles

var _users=
(from u in dbconetxt.Users
join g in dbconetxt.Gropus on u.userId equals g.userId
join p in dbconetxt.Permissions on u.userId equals p.userId
join v in dbconetxt.Vehicles on u.userId equals v.userId
Where u.Status=true
select u).Include(u.Groups)
         .Include(u.Permissions)
         .Include(u.Vehicles)
         .ToList()

After joining all these tables within a single query, I select the User Object. Certainly, I would get List, but I want each User Object should Include its respective Groups, Permissions, Vehicles, but from Vehicles and Permissions, I want to load only few Columns/Properties, not all. So, how do I specify which Columns to load in this scenario?

I am using Entity Framework 4.1 + C# + SQL Server.

  • 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-28T15:12:30+00:00Added an answer on May 28, 2026 at 3:12 pm

    Include is an extension method attached to IQueryable. That means you have to use it on the DbSet Users.

    If you want to select only specified columns, you can create an anonymous type or a class with a parameterless constructor.

    var users = from u in dbContext.Users.Include(u => u.Groups)
                where u.Status == true
                select new 
                {
                    u.Name,
                    u.Id,
                    u.WhatSoEver
                };
    

    or

    var users = from u in dbContext.Users.Include(u => u.Groups)
                where u.Status == true
                select new UserView
                {
                    Name = u.Name,
                    Id = u.Id,
                    Property1 = u.WhatSoEver
                };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this strange scenario. I have a table having multiple rows (each generated
I am having a scenario, in which i have multiple delegates attached to the
The scenario I am particularly interested is multiple servers having daemons that run on
Hi i am having problem inserting data into multiple table from one view. First
Scenario Having already read a post on this on the same site, which didn't
Imagine having the following scenario: You need to create a system where the Back
Having some trouble with what should be a very simple scenario. For example purposes,
I'm having trouble handling the scenario whereby an event is being raised to a
How would you test this scenario? I've just started looking into NHibernate and having
Suppose I have a table: <table width=100> <tr> <td> hi i like you you

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.