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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T10:50:48+00:00 2026-06-09T10:50:48+00:00

I have three tables, Group -> User -> Account. Group can have multiple users

  • 0

I have three tables, Group -> User -> Account.
Group can have multiple users and user can have multiple accounts.

when i try to fetch all the accounts in the group with query

var accounts = accountRepository.FindAll(x => x.User.Group.Id == groupId);

where FindAll is method in common repository

/// <summary>
/// Find all entities with filter
/// </summary>
/// <param name="expression">Linq expression</param>
/// <returns>IQueryOver of entity of type TEntity</returns>
public IQueryOver<TEntity> FindAll(Expression<Func<TEntity, bool>> expression)
{
    var query = _session.QueryOver<TEntity>();
    query.Cacheable().CacheMode(CacheMode.Normal);
    return query.Where(expression);
}

my query to find all the accounts in Groups does not work as it throw error with message

could not resolve property: User.Group.Id

Whats the better way to write this query in

  • 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-09T10:50:49+00:00Added an answer on June 9, 2026 at 10:50 am

    Use Linq to NHibernate instead:

    public IQueryable<TEntity> FindAll(Expression<Func<TEntity, bool>> expression)
    {
        var query = _session.Query<TEntity>();
        return query.Where(expression);
    }
    

    Unlike QueryOver, the Linq provider supports these kind of queries (traversing through the entity hierarchy), turning it into SQL joins.

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

Sidebar

Related Questions

I have three tables: User -- contains users Group -- contains a set of
I have user and group tables set up as the following. users id int
I have three tables: Users, Groups and GroupsUsers User table: id: 1 username: admin
Suppose I have three tables: user , group and xref , a table that
I have three tables specifying important columns below Users(Id, username) Groups(Id, groupname, creator) (creator
Let's say I have three tables (with the columns in each): USERS: id, name,
i have three tables i would like to link in this one query. The
I have three tables [USER] --Master user table [KEYWORD] --Master keyword table [USER_KEYWORD] --[USER]-[KEYWORD]
I have a following problem. I have three tables: message, comment and user. I
I have three tables in my database: reservations , events and users . I

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.