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

  • Home
  • SEARCH
  • 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 6230567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:46:26+00:00 2026-05-24T09:46:26+00:00

Is there a way of dynamically setting the loading strategy between two entities at

  • 0

Is there a way of dynamically setting the loading strategy between two entities at load time?

For example if I have a Parent entity that has a list of Child entities, I may want to load the ‘Parent’ entity with lazy loaded children in some situations and eager loading in others.

Is there a way to do this? The mapping seems to imply its one or the other.

  • 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-24T09:46:26+00:00Added an answer on May 24, 2026 at 9:46 am

    Yes the suggested strategy is to default your entities to use lazy loading, and then when you want to eager load them you change your Query and specify that you want your children to be loaded eagerly.

    As to how you actually implement the eager loading, it depends on what query style you’re using. (i.e. Linq2NH, Criteria, HQL)

    For example, with Linq2NH I believe it’s something like this:

    session.Query<Parent>().Fetch(p => p.Child)...
    

    With HQL you would use

    fetch

    Like this:

    from Parent as p left join fetch p.Child...
    

    and finally, with the Criteria API, you would do something like this:

    var criteria = context.Session.CreateCriteria<Parent>();
    criteria.SetFetchMode("Child", NHibernate.FetchMode.Eager);
    ....
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to dynamically create a kind of sub-domain that goes between
Is there a way to have the sort descriptor(s) be dynamically set for a
Is there a way to dynamically invoke a method in the same class for
Is there any way to dynamically generate an swf file? Or insert variables after
Is there a way to dynamically set the ListId field in the ListView control.
Is there a way to dynamically create a selectItem list? I dont really want
Is there a way to dynamically and conditionally create a class definition in PHP,
Is there an easy way of dynamically building a filepath in .Net? At the
Is there a way in C to find out the size of dynamically allocated
The table names in my mysql database are dynamically generated. Is there some way

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.