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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T16:17:11+00:00 2026-05-24T16:17:11+00:00

I am new to nhibernate and trying to create a query on a database

  • 0

I am new to nhibernate and trying to create a query on a database with manytomany links between items and categories.

I have a database with 3 tables : items, categories and a lookup table categoryitem like this:

  • categorys – primary key categoryId

  • items – primary key itemId

  • categoryItem – categoryId column and itemId column

I want a query returning items for a particular category and have tried this and think i am along the right lines:

public IList<Item> GetItemsForCategory(Category category)
        {

//detached criteria

DetachedCriteria itemIdsCriteria = DetachedCriteria.For(typeof(Category))     
                .SetProjection(Projections.Distinct(Projections.Property("Item.Id")))     
                .Add(Restrictions.Eq("Category.Id", category.Id)); 

                 criteria.Add(Subqueries.PropertyIn("Id", itemIdsCriteria));

            return criteria.List<Item>() as List<Item>;


}

I only have business objects for category and item.
how do i create a repository method to find items for a particular category?

  • 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-24T16:17:11+00:00Added an answer on May 24, 2026 at 4:17 pm

    I assume that your classes look like this:

    class Item
    {
      // id and stuff
      IList<Category> Categories { get; private set; }
    }
    
    class Category
    {
      // id and stuff
    }
    

    query (HQL)

    session.CreateQuery(@"select i
    from Item i
      inner join i.Categories c
    where 
      c = :category")
    .SetEntity("category", category)
    

    Criteria

    session
      .CreateCriteria(typeof(Item))
      .CreateCriteria("Categories", "c")
      .Add(Restrictions.Eq("c.Id", category.Id))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to NHibernate and trying to create my first mapping. I have created
I'm trying to insert some new objects into a firebird database using NHibernate. I
I'm relatively new to NHibernate, but have been using it for the last few
I have a website where I allow users to create new Part records. I'm
I'm trying to map myexisting database by Fluent NHibernate I get error: The element
I am trying to create a new Java EE project using hibernate and JPA
I'm new to NHibernate, and am trying to map a domain model that has
I'm trying to delete a database record using ASP.NET MVC, Fluent, and NHibernate. See
public static IList<T> LoadObjectListAll<T>() { ISession session = CheckForExistingSession(); var cfg = new NHibernate.Cfg.Configuration().Configure();
i'm fairly new to NHibernate and although I'm finding tons of infos on NHibernate

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.