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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:52:02+00:00 2026-06-17T04:52:02+00:00

I needed to eagerly fetch an entity with collections of collections, etc. so that

  • 0

I needed to eagerly fetch an entity with collections of collections, etc. so that I could process the data concurrently (a Thing entity with many YELLOWEntities that each have many SubYellowEntities). The key code needed was:

NHibernateUtil.Initialize(fetchedThings);

(See accepted answer below.)

  • 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-17T04:52:02+00:00Added an answer on June 17, 2026 at 4:52 am

    Solution (if you can refine this, go ahead and post the revision as the answer): Runs in 17 seconds (down from 97) on 8 processors with correct results. Please remember that the vast majority of time was spent in calculations, not in waiting for Nhibernate to return.

    var fetchedThings = new List<Thing>();
    var sessFT = Session.SessionFactory.OpenSession();
    Task getThingsTask = new Task(() =>
       {
           fetchedThings = sessFT.CreateQuery(@" from Thing t " +
                                 " inner join fetch t.BlueEntity " )
                                 .SetResultTransformer(Transformers.DistinctRootEntity)
                                 .List<Thing>();
            NHibernateUtil.Initialize(fetchedThings);
        });
    getThingsTask.Start();
    
    var fetchedYellows = new List<YELLOWEntity>();
    var sessFY = Session.SessionFactory.OpenSession();
    Task getYellowsTask = new Task(() =>
       {
            fetchedYellows = sessFY.CreateQuery(@" from YELLOWEntity y " +
                                 " left join fetch y.SubYellowEntities " + ... )
                                 .SetResultTransformer(Transformers.DistinctRootEntity)
                                 .List<YELLOWEntity>();
            NHibernateUtil.Initialize(fetchedThings);
        });
    getYellowsTask.Start();
    
    getThingsTask.Wait();
    getYellowsTask.Wait();
    
    Parallel.ForEach(fetchedThings, thing =>
    {
        thing.YELLOWEntities = fetchedYellows.Where(y=>y.Thing.Id == thing.Id).ToList();
        ...
        //...inner foreach() loop through 'YELLOWthings'... doing threadsafe stuff
        ...
    });
    
    //dispose the temp sessions
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i needed two instances that has access to each other privates. i naturaly thought
I needed a validation tool that could be reused in multiple projects, so I
Needed to write a server text file as the output of a business process
I needed to store arbitrary data in a relational database of multiple data-types so
I needed to build an Android app that lets you view a web page
When doing linq-to-sql in c#, you could do something like this: var data =
I needed an id field in my rails migration that auto-increments from 0 and
I needed to add a crossdomain.xml file to my website so that an embeddable
We needed a location service for our app that was available from anyplace. We
I needed to come up with a SQL query that returns rows that satisfy

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.