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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T03:02:55+00:00 2026-06-11T03:02:55+00:00

I use Entity Framework, and I have a many-to-many relationship in the database between

  • 0

I use Entity Framework, and I have a many-to-many relationship in the database between Users and Boxes, like this:

public class HistoryEntry
{
    public int BoxId { get; set; }
    public virtual Box Box { get; set; }

    public int UserId { get; set; }
    public virtual User User { get; set; }

    public int ResultBoxId { get; set; }
    public virtual Box ResultBox { get; set; }
}

The key of this “HistoryEntries” table would be a multicolumn key: it consists the BoxId and the UserId:

        modelBuilder.Entity<HistoryEntry>().HasKey(entry =>
            new
            {
                BoxId = entry.BoxId,
                UserId = entry.UserId
            });

However, I want to turn off the lazy loading and the proxy creation because I would use every query with eager loading.

How to rewrite my code in an “eager loading” style?

  • 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-06-11T03:02:57+00:00Added an answer on June 11, 2026 at 3:02 am

    Use the Include method to eager load the navigational properties.

    var users = context.User.Include(u => u.HistoryEntries.Select(h => h.Box))
          .Where(/* */);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have many repository classes that look like the following: public class ProfileRepository :
I use Entity Framework and have this entity mapping: Parent - Child 1 (ActiveInd
In my database I have a One-to-Many relationship (Band has many Albums). However this
I'm using Entity Framework 4.1 and I have a one to many relationship. When
I use Entity Framework 4 and I have parent - child relation with Cascade
I use ADO.NET Entity-Framework, I have a page that is data-bound to an entity
I'm using Entity Framework and I have a custum IQueryProvider. I use the Execute
I have several Entity Framework Code First DbContext objects that use a custom Initializer.
I have converted an Entity framework project to use POCO objects by removing the
I use Entity Framework code-first. DataBaseName - I want to create a database in

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.