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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:40:24+00:00 2026-06-03T21:40:24+00:00

I have an object hierarchy that looks something like this: public class Book {

  • 0

I have an object hierarchy that looks something like this:

public class Book
{
    public virtual List<Page> Pages { get; set; }

    public virtual List<Paragraph> Paragraphs { get; set; }
}

public class Page
{
    public virtual List<Paragraph> Paragraphs { get; set; }
}

I want to load the complete object hierarchy and am going about that like this:

Book book = (from b in context.Books.Include("Pages").Include("Paragraphs")
    .Include("Pages.Paragraphs") where CONDITION).SingleOrDefault();

I find that book.Pages and book.Paragraphs are loaded, but book.Pages[i].Paragraphs is null.

Examining the database, the data looks correct (association columns are all correctly populated).

I also tried the lamda syntax, but do not see how that could work when the parameter is a collection rather than an entity, e.g. one can do something like this:

.Include(s => s.Paragraphs.Select(p => p.Id == 1)

but I do not see how one could use the lamda syntax to specify that the Paragraphs collection for each Page in book.Pages should be loaded.

Am I missing something, or is this a limitation of Entity Framework? If it’s a limitation, how can I work around it?

  • 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-03T21:40:25+00:00Added an answer on June 3, 2026 at 9:40 pm

    In the actual code (not the code boiled down for the purpose of asking a targeted question, I was missing a virtual keyword. EF didn’t complain about an inability to load the additional data requested through .Include("Pages.Paragraphs"), it just silently ignored that request.

    public class Page
    {
        public /* was missing: virtual*/ List<Paragraph> Paragraphs { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have case where the class hierarchy is something like this, +---------------+ | UIElement
In C# I have an intrusive tree structure that looks like this: public abstract
In my xaml I have something that looks like: <TreeView.ItemContainerStyle> <Style TargetType=TreeViewItem> <Setter Property=IsExpanded
I have an object with the following hierarchy class Account string username List Delegations
I have an xml snippet that contains an object hierarchy: doc = \ <RootObj
I have a winforms TreeView control that allows you to browse an object hierarchy.
I have a hierarchy of objects that I would like to show using a
I have a python class hierarchy, that I want to extend at runtime. Furthermore
Problem: I have the object hierarchy A => B => C - that's A
I have a complex object hierarchy that I've been wrestling with to get passed

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.