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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T01:00:41+00:00 2026-05-12T01:00:41+00:00

I need to load a model, existing of +/- 20 tables from the database

  • 0

I need to load a model, existing of +/- 20 tables from the database with Entity Framework.

So there are probably a few ways of doing this:

  1. Use one huge Include call
  2. Use many Includes calls while manually iterating the model
  3. Use many IsLoaded and Load calls

Here’s what happens with the 2 options

  1. EF creates a HUGE query, puts a very heavy load on the DB and then again with mapping the model. So not really an option.

  2. The database gets called a lot, with again pretty big queries.

  3. Again, the database gets called even more, but this time with small loads.

All of these options weigh heavy on the performance. I do need to load all of that data (calculations for drawing).

So what can I do?

a) Heavy operation => heavy load => do nothing 🙂
b) Review design => but how?
c) A magical option that will make all these problems go away

  • 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-12T01:00:42+00:00Added an answer on May 12, 2026 at 1:00 am

    When you need to load a lot of data from a lack of different tables, there is no “magic” solution which makes all problems go away. But in addition to what you have already discussed, you should consider projection. If you don’t need every single property of an entity, it is often cheaper to project the information you do need, i.e.:

    from parent in MyEntities.Parents
    select new
    {
        ParentName = ParentName,
        Children = from child in parent.Children
                   select new
                   {
                       ChildName = child.Name
                   }
    }
    

    One other thing to keep in mind is that for very large queries, the cost of compiling the query can often exceed the cost of executing it. Only profiling can tell you if this is the problem. If this turns out to be the problem, consider using CompiledQuery.

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

Sidebar

Related Questions

I need to modify a (xml-)file from Apache Ant. loadfile task allows to load
Need some help or some advice with entity framework v4. As you already know,
I'm mapping some POCO classes to an existing database with several lookup tables and
I need to load about 60 images, each on a different page, in to
To complete some testing I need to load the 64 bit version of an
I have a two dimensional array that I need to load data into. I
I need to be able to load the entire contents of a text file
I have a situation where I need to be able to load assemblies in
I need to use a dll in my asp.net application. How do I load
The SQL-LDR documentation states that you need to do a convetional Path Load: When

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.