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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:02:22+00:00 2026-06-13T11:02:22+00:00

I want to catch duplicates mutually exclusively, that is, I need to show that

  • 0

I want to catch duplicates mutually exclusively, that is, I need to show that both the first and the third items are duplicates, and that the first and the fourth items are duplicates.

public class Foo
{
    public String Name { get; set; }
    public String SName { get; set; }
}

class Program
{
    static void Main(string[] args)
    {
        var list = new List<Foo>();
        list.Add(new Foo { Name = "a", SName = "d" });
        list.Add(new Foo { Name = "b", SName = "e" });
        list.Add(new Foo { Name = "c", SName = "a" });
        list.Add(new Foo { Name = "a", SName = "f" });

        // only groups by 1 name
        var duplicates = list.GroupBy(i => i.Name).Where(g => g.Count() > 1).Select(g => g.Key);
    }
}

I know this can be done trivially with foreach, I want to learn.

  • 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-13T11:02:23+00:00Added an answer on June 13, 2026 at 11:02 am

    So we’ll start out by getting all of the repeated name values from either column, this is fairly easy:

    IEnumerable<string> repeatedNames = list.SelectMany(foo => new[] { foo.Name, foo.SName })
        .GroupBy(name => name)
        .Where (g => g.Count () > 1)
        .Select(g => g.Key);
    

    Next we take each of those names and find all of the items that contain that value. The end result is a sequence for each distinct name where the sequence is all of the Foo items containing that value.

    IEnumerable<List<Foo>> groupings = repeatedNames .Select(name =>
        list.Where(foo => foo.Name == name || foo.SName == name).ToList());
    

    If you want it to be, instead of a sequence of Lists of Foos, a sequence of an item with both the distinct value and a sequence then it’s easy enough to add in:

    var groupings = repeatedNames .Select(name => new
        {
            Name = name,
            Foos = list.Where(foo => foo.Name == name || foo.SName == name).ToList()
        });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list of items that I want to insert into the database
I want to catch a fancybox error (The requested content cannot be loaded. Please
i want to catch the data from server as an answer and alert it.
I want to catch exceptions thrown by classes implementing Processor interface. In aspect I
-I want to raise an event whenever method showmessage is called.I want to catch
This is my below code and I want to catch the exception if any
I am using codeplex NVelocity library on .net and i want to catch an
I'm making a background app A in android, and want to catch the touch
I want to have a 'catch all' route which runs when none of the
I want my app to catch downloads of a particular kind of file. Here's

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.