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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T08:50:33+00:00 2026-05-14T08:50:33+00:00

I have a GroupBy that I groups all elements. I can see the items

  • 0

I have a GroupBy that I groups all elements. I can see the items are there in LinqPad but can’t find a way to get the count.

Here is what I have so far:

SurveyResponses.Where( q => q.QuestionId == 4)
    .GroupBy(q => q.AnswerNumeric)
    .Where( g => g.Key == 1)

In Linq Pad I can see there are 4 items in this query. If I do Count it returns 1.

I’ve tried, ToList().Count, Select(x => x).Count, etc.

To be clear, I have an IGrouping and need to get the count from it.

  • 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-14T08:50:33+00:00Added an answer on May 14, 2026 at 8:50 am

    In the code you posted you don’t have an IGrouping<int, Response>, you have an IEnumerable<IGrouping<int, Response>>. You are counting the number of groupings that fulfil the Where predicate.

    Use Single instead of Where to get the result you expect:

    int count = SurveyResponses
        .Where(q => q.QuestionId == 4)
        .GroupBy(q => q.AnswerNumeric)
        .Single(g => g.Key == 1)
        .Count();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking to get a list of all of the groups that a
I have a query that groups all entries from a table and groups them
I have a query that checks a tables and groups all entries from a
I have created some MSSQL queries, all of them work well, but I think
I have a linq expression that returns transactions in groups. Each transaction has a
In my model I have a couple of queries that can be used (and
I have a crystal report that is like this: Group By Property.ID Group By
I have a set of data that is structured like this: ItemA.GroupA ItemB.GroupA ItemC.GroupB
i am trying to do a groupby in linq, basically i have a list
Have you ever seen any of there error messages? -- SQL Server 2000 Could

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.