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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:37:49+00:00 2026-06-15T15:37:49+00:00

I have a linq that create a list of object (9 element right now)

  • 0

I have a linq that create a list of object (9 element right now) such as :

Object 1:   Title: Title1
            Value: Marco

Object 2:   Title: Title2
            Value: Paolo

Object 3:   Title: Title3
            Value: Giovanni

Object 4:   Title: Title1
            Value: Edoardo

Object 5:   Title: Title2
            Value: Chris

Object 6:   Title: Title3
            Value: John

Object 7:   Title: Title1
            Value: Manuel

Object 8:   Title: Title2
            Value: Lorenz

Object 9:   Title: Title3
            Value: Ernest

Instead of this 9 object, I’d like to return only 3 Object (group by Title), having as Value for each object the union list for each Value on each Grouping. So the result should be somethings like :

Object 1:   Title: Title1
            Value[]: Marco, Edoardo, Manuel

Object 2:   Title: Title2
            Value[]: Paolo, Chris, Lorenz

Object 3:   Title: Title3
            Value[]: Giovanni, John, Ernest

is it possible on Linq? Or I need to iterate my list and manage it manually?

P.S. Note this is only an example! In my scenario, for each Object I have More element than Title and Value, such as 10 element.

  • 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-15T15:37:51+00:00Added an answer on June 15, 2026 at 3:37 pm
    var query = objects.GroupBy(o => o.Title)
                       .Select(g => new  
                       {
                           Title = g.Key,
                           Value = g.Select(x => x.Value).ToArray()
                       });
    

    Or with query syntax:

    var query = from o in objects
                group o by o.Title into g
                select new 
                       {
                           Title = g.Key,
                           Value = g.Select(x => x.Value).ToArray()
                       });
    

    UPDATE Consider using simple grouping – this will return objects grouped by title

    var query = objects.GroupBy(o => o.Title);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some LINQ code that generates a list of strings, like this: var
I have a LINQ query that returns some object like this... var query =
I have a field object and I create a list of fields: class Field
I have a LINQ TO SQL Context that I have created that calls a
I have a Linq expression that (for northwind) gets the total qty ordered per
I have a Linq query that looks something like this: var myPosse = from
I have this linq query that works well (although it may be written better,
I have a Linq query that looks something like this: var query = from
I have two LINQ statements that I would like to make into one, but
I have a LINQ statement that returns an anonymous type. I need to get

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.