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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:27:04+00:00 2026-05-25T18:27:04+00:00

I have just transferred my EF 4.0 Solution to use EF 4.1 Code-First. Everything

  • 0

I have just transferred my EF 4.0 Solution to use EF 4.1 Code-First. Everything went smooth and I was able to get data from DB and show it in my Silverlight project using WCF RIA Services 1.0SP2-RC in a couple of hours.

The only problem occurs when I’m trying to load references in my domain service. I have added the [Include] attribute to my reference property. Also, I have enabled Lazy Loading for my DbContext.But still, the following method returns nothing (The following worked on Ef 4.0 but not on 4.1):

public IEnumerable<Bar> GetBarsInFoo (int fooId, bool direction)
{
    var foo = this.DbContext.Foos.FirstOrDefault(f => f.FooId == fooId);
    var Bars = foo.Bars.Where(b => b.Direction == direction).ToList();
    return Bars;
}  

So I have to check and see if the referenced collection is not included, then load it:

public IEnumerable<Bar> GetBarsInFoo (int fooId, bool direction)
{
    var foo = this.DbContext.Foos.FirstOrDefault(f => f.FooId == fooId);

    // Additional code to load the relation.
    if (!this.context.Entry(foo).Collection(f => f.Bars).IsLoaded)
    {
        this.context.Entry(foo).Collection(f => f.bars).Load();   
    }

    var Bars = foo.Bars.Where(b => b.Direction == direction).ToList();
    return Bars;
}  

The above code, returns the results correctly.

The problem is that I have to change many parts of my code if I want to handle this problem as I have mentioned.

Here’s my entities definitions:

public partial class Foo
{
    [Key]
    public int FooId {get; set;}

    [Include]
    [Association("Foo_Bar", "FooId", "FooId")]
    [Display(AutoGenerateField = false)]
    public virtual ICollection<Bar> Bars { get; set; }
}

public partial class Bar
{
    [Key]
    public int BarId {get; set;}

    [Display(AutoGenerateField = false)]
    public int FooId { get; set; }

    [Include]
    [Display(AutoGenerateField = false, Name = "In Foo", Order = 12)]
    [Association("Foo_Bar", "FooId", "FooId", IsForeignKey = true)]
    [ForeignKey("FooId")]
    public virtual Foo Foo { get; set; }
}  

Is there any way that I can let EF handle to load relations without me checking?

  • 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-25T18:27:05+00:00Added an answer on May 25, 2026 at 6:27 pm

    Assuming you can live without lazy loading, the explicit way to include child objects is to use the Include<T>(...) extension method. In your example,

    public IEnumerable<Bar> GetBarsInFoo (int fooId, bool direction)
    {
        var foo = this.DbContext.Foos
                                .Include(f => f.Bars)
                                .FirstOrDefault(f => f.FooId == fooId);
    
        var Bars = foo.Bars.Where(b => b.Direction == direction).ToList();
        return Bars;
    }
    

    This is the simplest way to load all of the child objects. As an added bonus, you’ll get them in one trip to the database, rather than two.

    You may find more relevant information at the ADO.NET team blog though this was for CTP5.

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

Sidebar

Related Questions

Hello MODx developers, I am using MODx revolution. I have just transferred site from
I have just installed C# for the first time, and at first glance it
I have transferred my WordPress blog from Godaddy to my own personal server and
I am just studying so I need your advice. I have found a code
Recently I transferred a set of data from one server to hpcc(high-performance computing) Command
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I
Have just started playing with ASP.NET MVC and have stumbled over the following situation.
I have just inherited a server application, however it seems that the only copy
I have just set up cruise control.net on our build server, and I am

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.