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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T01:17:13+00:00 2026-05-19T01:17:13+00:00

I have the following tables: Application Component Position An Application can have 1 to

  • 0

I have the following tables:

  1. Application
  2. Component
  3. Position

An Application can have 1 to many Components
An Application can have 1 to many Positions.

When I try to run a join using NHibernate like this:

IEnumerable<Application> applications = Session.Query<Application>()
    .FetchMany(r => r.Components)
    .FetchMany(r => r.Positions)

and I look at the positions list it has duplicate positions. This goes away if I remove the first FetchMany():

IEnumerable<Application> applications = Session.Query<Application>()
    .FetchMany(r=>r.Positions)

I thought NHibernate takes care of normalizing your collections when doing multiple 1 to many joins but it doesn’t seem to be working.

Any suggestions or workarounds on how to allow me to do multiple 1 to many joins using NHibernate LINQ without getting these duplicate records?

  • 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-19T01:17:13+00:00Added an answer on May 19, 2026 at 1:17 am

    This is not a solution, but a workaround that performs better than a solution.

    Seperate queries will probably perform better than one big query because they retrieve less data. You can execute the separate queries at once by using .Future()

    One large result set with 2 Apps with 2 components and 2 positions = 24 elements

    ApplicationColumns ComponentColumns PositionColumns
    AppA               ColA             PosA
    AppA               ColB             PosA
    AppA               ColA             PosB
    AppA               ColB             PosB   
    AppB               ColC             PosC
    AppB               ColD             PosC
    AppB               ColC             PosD
    AppB               ColD             PosD  
    

    Three small result sets with 2 Apps with 2 components and 2 positions = 10 elements

    ApplicationColumns
    AppB
    AppB
    
    ComponentColumns
    ColA
    ColB
    ColC
    ColD
    
    PositionColumns
    PosA
    PosB
    PosC
    PosD
    

    Select N+1 and outer join are not the only choice.

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

Sidebar

Related Questions

I have the following tables in my database that have a many-to-many relationship, which
I have following situation. A main table and many other tables linked together with
I have the following tables in MySQL: team: id, name, [more stuff] person: id,
I have the following five tables: ISP Product Connection AddOn AddOn/Product (pivot table for
I have the following code: ListBox.DataSource = DataSet.Tables(table_name).Select(some_criteria = match) ListBox.DisplayMember = name The
I have two tables with the following columns: table1: id, agent_name, ticket_id, category, date_logged
I have 2 tables with the following structure.. category { sub_cat_id - numeric sub_cat_name
I have the following tables: Suppliers(Sno, Sname, Address) Parts(Pno, Pname, Colour) Catalogue(Sno, Pno, Price)
I have the following tables in a PostgreSQL: Categories | Locations | Checkins |
Suppose I have the following tables: User, Computer and Command. Users and computers may

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.