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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:08:32+00:00 2026-05-13T15:08:32+00:00

In LINQ (I come from a C# background), you can manually load data for

  • 0

In LINQ (I come from a C# background), you can manually load data for related tables via the Include(“xxx”) method

from a in ctx.MainTable.Include("SubTable")
select a;

In the above code, every instance of MainTable is loaded and all the data for MainTable.SubTable is also loaded. If “Include” is not called, every returned MainTable’s SubTable property will return null.

Are there equivalent methods for the Django ORM? If not, what’s the default Django behavior for situtions like the above?

  • 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-13T15:08:32+00:00Added an answer on May 13, 2026 at 3:08 pm

    See this:

    http://docs.djangoproject.com/en/dev/ref/models/querysets/#id4

    You create a select_related query set to follow relationships and pre-fetch related rows.

    Normally, you don’t waste much time doing this until you know that the individual fetches done automagically by the ORM are too slow.

    When you simply name a related object field:

    x = MainTable.objects.get( id="some Object" )
    y= x.subTable
    

    The ORM will do the of the related subTable row. lazily.

    You can’t easily fetch an entire table into memory. QuerySets are “lazy” and don’t fetch rows until there’s no possible excuse. Consider this.

    for m in MainTable.objects.all():
        y = m.subTable
        if y.someAttribute > 5: 
            break
    

    Then you may not actually need all the objects in MainTable. The query set is ready to fetch them. It just doesn’t actually fetch them all. That’s why we don’t generally do anything more than x.subTable and leave it to the ORM to fetch the row as needed.

    Once in a while you can prove that it’s too slow. Then you can do MainTable.objects.select_related()... and force navigation to rows in other tables.

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

Sidebar

Ask A Question

Stats

  • Questions 373k
  • Answers 374k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I found the answer myself! Here is the solution: ObjectFactory.With("connectionString").EqualTo(someValueAtRunTime).GetInstance<IProductProvider>();… May 14, 2026 at 7:48 pm
  • Editorial Team
    Editorial Team added an answer I'm going to assume that you're using bash, or at… May 14, 2026 at 7:48 pm
  • Editorial Team
    Editorial Team added an answer As I specified in the answers page: Derived.Foo(object) is printed… May 14, 2026 at 7:48 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.