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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:08:30+00:00 2026-06-04T01:08:30+00:00

There are two classes in my project like below: public class Teacher { public

  • 0

There are two classes in my project like below:

public class Teacher
{
    public virtual long Id {get;set;}
    public virtual IList<Student> Students {get;set;}
}


public class Student
{
    public virtual long Id {get;set;}
    public virtual string Name {get;set;}
}

I need a query which get Students’ count of each Teacher and group by with the count result. Also with the frequency of each count(eh… count of count number). I don’t know how to do this using queryover. It’s like if given data like this:

teacher1.Students = [student1,student2,student3] //teacher1's student count is 3
teacher2.Students = [student4]
teacher3.Students = [student5,student6,student7]
teacher4.Students = [student8]
teacher5.Students = [] //empty

I need query result like this:

[
[0,1], //1 teacher has 0 students
[1,2], 
[3,2] //2 teachers have 3 students
]

Updated: the sql is like this:

select tc.tCount, count(tc.TRID)
from (select tr.Id as TRID, count(std.Id) as tCount
from Teacher tr
JOIN Student std on std.TeacherId = tr.Id
GROUP BY tr.Id ) as tc GROUP BY tc.tCount
  • 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-04T01:08:33+00:00Added an answer on June 4, 2026 at 1:08 am
                MyDTO myDTO = null;
                Student studentAlias = null;
                Teacher teacherAlias = null;
                var results = _session.QueryOver<Teacher>(()=>teacherAlias)
                   .JoinAlias(x=>x.Students,()=>studentAlias, JoinType.LeftOuterJoin)
                   .SelectList(list => list
                      .SelectGroup(m => m).WithAlias(() => myDTO.Teacher)
                      .SelectCount(m => studentAlias.Id).WithAlias(() => myDTO.Count)
                   )
                   .TransformUsing(Transformers.AliasToBean<MyDTO>())
                   .List<MyDTO>();
    

    DTO:

    public class MyDTO{
       public Teacher Teacher {get;set;} //or just name or whatever you need
       public int Count {get;set;}
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these two classes public class Person { } public class Company {
Let's say we have these two classes: public class Base { public static int
In a project I'm working on there are two custom ActionFilterAttribute classes which are
There are two classes in my project (using ASP.NET MVC): AuthenticationService, and ProfileService. When
I have two classes defined as such: public class Questionnaire { public int QuestionnaireID
I have two classes in my project that I would like to pass the
I java ee project with two entity classes: Employee and Shift, and there's a
There are two classes: A and B . There are algorithms for converting from
There are two classes, let's call them X and O. A number of elements
http://pastebin.com/1btVw8Cb There are two classes in the above code. So above is my code

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.