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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T16:46:09+00:00 2026-05-19T16:46:09+00:00

I have a List<T> that contains some user defined class data. I want to

  • 0

I have a List<T> that contains some user defined class data.

I want to find the unique instances of a combination of 2 data fields.

For example, if the entries contain the fields Name and Age, I want the unique cases of the Name and Age combination, e.g. Darren 32, should only be retrieved once, even if it is in the list multiple times.

Can this be achieved with LINQ?

Thanks.

  • 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-19T16:46:10+00:00Added an answer on May 19, 2026 at 4:46 pm

    You need to extract only these data fields and make them unique:

    var result = list
      .Select(x => new { Age = a.Age, Name = x.Name})
      .Distinct();
    

    This creates a IEnumerable of a anonymous type which contains a Age and Name property.

    If you need to find the items behind the unique data, you need GroupBy. This will provide the list with the single items behind each group.

    var result = list
      .GroupBy(x => new { Age = a.Age, Name = x.Name});
    
    foreach (var uniqueItem in result )
    {
        var age = uniqueItem.Key.Age;
        var name = uniqueItem.Key.Name;
        foreach (var item in uniqueItem)
        {
           //item is a single item which is part of the group
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a rather large list of data that contains 5 properties per element.
I have a class that contains a list of objects. What's the best way
I have an array that contains a list of vertices which I copy to
I have a text file that contains a long list of entries (one on
I have a linked list that I want to sort part of, eg: std::sort(someIterator,
I have a specialized list that holds items of type IThing : public class
I have a list that looks like (A (B (C D)) (E (F))) which
I have a dropdown list that stores name/value pairs. The dropdown appears in each
I have a list wrapper that maintains two Tstringlists and a TClassList I need
I have a list view that is periodically updated (every 60 seconds). It was

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.