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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T11:41:55+00:00 2026-05-12T11:41:55+00:00

I’m trying to rewrite some old SQL into LINQ to SQL. I have a

  • 0

I’m trying to rewrite some old SQL into LINQ to SQL. I have a sproc with a GROUP BY WITH ROLLUP but I’m not sure what the LINQ equivalent would be. LINQ has a GroupBy but it doesn’t look like it supports ROLLUP.

A simplified example of the results I’m trying to get would be something like this:

+-----------+---------------+--------------------+
|   City    |  ServicePlan  |  NumberOfCustomers |
+-----------+---------------+--------------------+
| Seattle   |  Plan A       |                 10 |
| Seattle   |  Plan B       |                  5 |
| Seattle   |  All          |                 15 |
| Portland  |  Plan A       |                 20 |
| Portland  |  Plan C       |                 10 |
| Portland  |  All          |                 30 |
| All       |  All          |                 45 |
+-----------+---------------+--------------------+

Any ideas on how I could get these results using LINQ to SQL?

  • 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-12T11:41:56+00:00Added an answer on May 12, 2026 at 11:41 am

    I figured out a much simpler solution. I was trying to make it way more complicated than it needed to be. Rather than needing 3-5 classes/methods I only need one method.

    Basically, you do your sorting and grouping yourself and then call WithRollup() to get a List<> of the items with sub-totals and a grand total. I couldn’t figure out how to generate the sub-totals and grand total on the SQL side so those are done with LINQ to Objects. Here’s the code:

    /// <summary>
    /// Adds sub-totals to a list of items, along with a grand total for the whole list.
    /// </summary>
    /// <param name="elements">Group and/or sort this yourself before calling WithRollup.</param>
    /// <param name="primaryKeyOfElement">Given a TElement, return the property that you want sub-totals for.</param>
    /// <param name="calculateSubTotalElement">Given a group of elements, return a TElement that represents the sub-total.</param>
    /// <param name="grandTotalElement">A TElement that represents the grand total.</param>
    public static List<TElement> WithRollup<TElement, TKey>(this IEnumerable<TElement> elements,
        Func<TElement, TKey> primaryKeyOfElement,
        Func<IGrouping<TKey, TElement>, TElement> calculateSubTotalElement,
        TElement grandTotalElement)
    {
        // Create a new list the items, subtotals, and the grand total.
        List<TElement> results = new List<TElement>();
        var lookup = elements.ToLookup(primaryKeyOfElement);
        foreach (var group in lookup)
        {
            // Add items in the current group
            results.AddRange(group);
            // Add subTotal for current group
            results.Add(calculateSubTotalElement(group));
        }
        // Add grand total
        results.Add(grandTotalElement);
    
        return results;
    }
    

    And an example of how to use it:

    class Program
    {
        static void Main(string[] args)
        {
            IQueryable<CustomObject> dataItems = (new[]
            {
                new CustomObject { City = "Seattle", Plan = "Plan B", Charges = 20 },
                new CustomObject { City = "Seattle", Plan = "Plan A", Charges = 10 },
                new CustomObject { City = "Seattle", Plan = "Plan B", Charges = 20 },
                new CustomObject { City = "Seattle", Plan = "Plan A", Charges = 10 },
                new CustomObject { City = "Seattle", Plan = "Plan A", Charges = 10 },
                new CustomObject { City = "Seattle", Plan = "Plan A", Charges = 10 },
                new CustomObject { City = "Portland", Plan = "Plan A", Charges = 10 },
                new CustomObject { City = "Portland", Plan = "Plan A", Charges = 10 },
                new CustomObject { City = "Portland", Plan = "Plan C", Charges = 30 },
                new CustomObject { City = "Portland", Plan = "Plan C", Charges = 30 },
                new CustomObject { City = "Portland", Plan = "Plan C", Charges = 30 }
            }).AsQueryable();
    
            IQueryable<CustomObject> orderedElements = from item in dataItems
                                                       orderby item.City, item.Plan
                                                       group item by new { item.City, item.Plan } into grouping
                                                       select new CustomObject
                                                       {
                                                           City = grouping.Key.City,
                                                           Plan = grouping.Key.Plan,
                                                           Charges = grouping.Sum(item => item.Charges),
                                                           Count = grouping.Count()
                                                       };
    
            List<CustomObject> results = orderedElements.WithRollup(
                item => item.City,
                group => new CustomObject
                {
                    City = group.Key,
                    Plan = "All",
                    Charges = group.Sum(item => item.Charges),
                    Count = group.Sum(item => item.Count)
                },
                new CustomObject
                {
                    City = "All",
                    Plan = "All",
                    Charges = orderedElements.Sum(item => item.Charges),
                    Count = orderedElements.Sum(item => item.Count)
                });
    
            foreach (var result in results)
                Console.WriteLine(result);
    
            Console.Read();
        }
    }
    
    class CustomObject
    {
        public string City { get; set; }
        public string Plan { get; set; }
        public int Count { get; set; }
        public decimal Charges { get; set; }
    
        public override string ToString()
        {
            return String.Format("{0} - {1} ({2} - {3})", City, Plan, Count, Charges);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 176k
  • Answers 176k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Another approach is to flush the deflater stream (and possibly… May 12, 2026 at 3:21 pm
  • Editorial Team
    Editorial Team added an answer Unfortunately, if you're running linux, you won't have access to… May 12, 2026 at 3:21 pm
  • Editorial Team
    Editorial Team added an answer After much searching (and discussing), the answer is simply that… May 12, 2026 at 3:21 pm

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
In order to apply a triggered animation to all ToolTip s in my app,
I have a French site that I want to parse, but am running into
I have text I am displaying in SIlverlight that is coming from a CMS

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.