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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T11:05:50+00:00 2026-05-13T11:05:50+00:00

Given a datatable, I wish to output an IEnumerable type (dictionary(of T) would be

  • 0

Given a datatable, I wish to output an IEnumerable type (dictionary(of T) would be perfect, otherwise a datatable would be acceptable) that provides an aggregation of the data within the datatable.

In SQL I would write the query as such:

select groupByColumn, sum(someNumber) from myTable group by groupByColumn

In VB.NET the closest I have got to this (achieved using information here) is:

' dt is a datatable containing two columns, referred to by index in p below
Dim q = From p In dt Group p By p(0) Into Sum(p(1)) Select p(0), SumOfNumber = Sum

However I receive error: “Range variable name can be inferred only from a simple or qualified name with no arguments.” on the p(0) element.

Therefore my question is as follows:

  1. How can I resolve this error?
  2. How do I process the result (q) as an IEnumerable type?

Life isn’t made any easier because I’m using Linq in unfamiliar vb.net. Many examples are in C#, but I haven’t really come across anything suitable even in C#.

  • 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-13T11:05:50+00:00Added an answer on May 13, 2026 at 11:05 am

    Resolved: I had to alias the columns returned.

    Dim q = From p In dt
        Group p By transactionTypeName = p(0) _
        Into totalForType = Sum(Convert.ToDouble(p(1))) _
        Select transactionTypeName, totalForType
    

    Also note that I had to do a conversion on the value that I was summing because being a dynamically returned datatable didn’t have the column type specified.

    Hint found here because vb.net oh so helpfully gives us a different error message to C#’s “Invalid anonymous type member declarator. Anonymous type members must be declared with a member assignment, simple name or member access.”

    For completeness, results are processed as below:

    For Each item In q ' no need for defining item as a type (in C# we'd use the var keyword)
        If item.totalForType = magicNumber Then
            'do something
        Else
            'do something else
        End If
    Next
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 338k
  • Answers 339k
  • 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 It turns out that "Default" as a Language setting doesn't… May 14, 2026 at 4:24 am
  • Editorial Team
    Editorial Team added an answer You can have multiple versions of ODAC on the same… May 14, 2026 at 4:24 am
  • Editorial Team
    Editorial Team added an answer Note: new-style classes are the default in Python 3. Subclassing… May 14, 2026 at 4:24 am

Related Questions

I have a list of object I wish to sort in C#.Net 3.5, the
Given a DataSet, I'm left joining DataTables[1-n] onto DataTable[0]. I have created a method
I have a data table and I want to write a loop where I
In a project that I'm working on I have to work with a rather
I am displaying a scrolled data table in a web page. This table has

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.