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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:20:50+00:00 2026-05-24T03:20:50+00:00

There’s a very related question: Create List<CustomObject> from List<string> however it doesn’t deal with

  • 0

There’s a very related question: Create List<CustomObject> from List<string> however it doesn’t deal with removing duplicates at the same time.

I have the following class examples:

class Widget
{
    public string OwnerName;
    public int SomeValue;
}

class Owner
{
    public string Name;
    public string OtherData;
}

I’d like to create a list of owners based on a list of Widgets, but only unique owner names.

Here is what I tried:

List<Owner> Owners = MyWidgetList.Select(w => new Owner { Name = w.OwnerName }).Distinct().ToList();

The problem is that there are repeats in the resulting list. What am I doing wrong?

  • 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-24T03:20:50+00:00Added an answer on May 24, 2026 at 3:20 am

    You need to define GetHashCode() and Equals() for your object to define what equality is for your custom type. Otherwise it compares based on the reference itself.

    This is because the LINQ extension methods use the IEqualityComparer interface to compare objects. If you don’t define a custom comparer (which you can do by creating a separate class that implements IEqualityComparer<Owner>) it will use the default equality comparer, which uses the class’s Equals() and GetHashCode() definition. Which, if you don’t override them, does reference comparisons on Equals() and returns the default object hash code.

    Either define a custom IEqualityComparer<Owner> (since you’re calling distinct on a sequence of Owner) or add a Equals() and GetHashCode() for your class.

    public class Owner
    {
        public string Name;
        public string OtherData;
    
        public override Equals(object other)
        {
            if (ReferenceEquals(this, other))
                return true;
    
            if (other == null)
                return false;
    
            // whatever your definition of equality is...
            return Name == other.Name && OtherData == other.OtherData;
        }
    
        public override int GetHashCode()
        {
            int hashCode = 0;
    
            unchecked
            {
               // whatever hash code computation you want, but for example...
                hashCode += 13 * Name != null ? Name.GetHashCode() : 0;
                hashCode += 13 * OtherData != null ? OtherData.GetHashCode() : 0;
            }
    
            return hashCode;
        }
    }
    

    Once you do that, the query you have written will work just fine.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
There is a very useful Clips feature in Coda, does Eclipse have such feature?
There are many string matching algorithms can be used to find a pattern (string)
There doesn't seem to be any tried and true set of best practices to
There are many tutorials that talk about deleting index.php from the url. But I
There is a constant I'm using from the iOS SDK. I printed out the
there is an array in c# string[] arr = new string[] {1,A,D,3,5,AF,34,TU,E,OP,4}; so how
There is a conversion process that is needed when migrating Visual Studio 2005 web
There are two weird operators in C#: the true operator the false operator If
There are two popular closure styles in javascript. The first I call anonymous constructor

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.