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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T03:33:56+00:00 2026-06-14T03:33:56+00:00

I have data with the following shape someArray = [{ Name: Some Class, TypeEnum:

  • 0

I have data with the following shape

someArray = [{ Name: "Some Class", TypeEnum: "Default" },
 { Name: "Some Class", TypeEnum: "Other" },
 { Name: "Some Class 2", TypeEnum: "Default" },
 { Name: "Some Class 2", TypeEnum: "Other" },
 { Name: "Some Class 3", TypeEnum: "Default" },
 { Name: "Some Class 4", TypeEnum: "Not Other" }]

Imagine each of those as objects in C#

What I need is an array of distinct versions of that array, with preference given to a selected TypeEnum. For example if I have selected the TypeEnum of other, I still want it to default to Default if it can’t find a version of that class with the “Other” TypeEnum

e.g. With “Other” selected as the Type enum, the above data would look like

 [{ Name: "Some Class", TypeEnum: "Other" },
 { Name: "Some Class 2", TypeEnum: "Other" },
 { Name: "Some Class 3", TypeEnum: "Default" }]

What I’m doing now is a lambda comparison from here

TypeEnum myEnum = "Other"
someArray.Distinct((x,y) => x.Name == y.Name && 
                   x.TypeEnum != myEnum && 
                   (y.TypeEnum == myEnum || y.TypeEnum == "Default"));

I’m hoping that Distinct pops out any x from the array that get’s a true from that expression.

Am I wrong in how I think Distinct works. If I am, what should I use instead?

  • 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-14T03:33:58+00:00Added an answer on June 14, 2026 at 3:33 am

    You can define a Comparer<T> class to handle your preference for comparison, like this:

    public class SomeClassComparer : Comparer<SomeClass>
    {
        private TypeEnum _preference;
    
        public SomeClassComparer(TypeEnum preference)
            : base()
        {
            _preference = preference;
        }
    
        public override int Compare(SomeClass x, SomeClass y)
        {
            if (x.Name.Equals(y.Name))
            {
                return x.TypeEnum == y.TypeEnum ? 0
                    : x.TypeEnum == _preference ? -1
                    : y.TypeEnum == _preference ? 1
                    : x.TypeEnum == TypeEnum.Default ? -1
                    : y.TypeEnum == TypeEnum.Default ? 1
                    : x.TypeEnum.CompareTo(y.TypeEnum);
            }
            else
                return x.Name.CompareTo(y.Name);
        }
    }
    

    UPDATE:
    If you’re only interested in the elements with your preferred or Default TypeEnum, you could filter out the rest first. Then sort the array according to the Comparer, i.e. giving preferred TypeEnum higher precedence than Default. Finally group the objects by their Name, and take the first one from each group:

    var result = someArray.Where(x => x.TypeEnum == TypeEnum.Default || x.TypeEnum == myEnum)
                          .OrderBy(x => x, new SomeClassComparer(myEnum))
                          .GroupBy(x => x.Name)
                          .Select(x => x.First());
    

    Or you can use the following version if you don’t want to define a Comparer class:

    Comparison<SomeClass> compareByTypeEnum = (x, y) =>
    {
        if (x.Name.Equals(y.Name))
        {
            return x.TypeEnum == y.TypeEnum ? 0
                : x.TypeEnum == myEnum ? -1
                : y.TypeEnum == myEnum ? 1
                : x.TypeEnum == TypeEnum.Default ? -1
                : y.TypeEnum == TypeEnum.Default ? 1
                : x.TypeEnum.CompareTo(y.TypeEnum);
        }
        else
            return x.Name.CompareTo(y.Name);
    };
    Array.Sort(someArray, compareByTypeEnum);
    var result = someArray.Where(x => x.TypeEnum == TypeEnum.Default || x.TypeEnum == TypeEnum.Other)
                          .GroupBy(x => x.Name)
                          .Select(x => x.First());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following data structure (simplified): A giant list of the class TestClass public
Suppose I have the following: class Shape a where draw a :: a ->
I have a class to do a computation using some callbacks. those callbacks need
I have following data frames > head(elo) date elo 1 1921-12-18 1597 2 1922-05-14
I have following data to save in database using php my data is :
I have following data in my table. alt text http://img26.imageshack.us/img26/3746/productfield.png I want to extract
I have following data in excel table r1 r2 r3 r4 r5 v1 v2
I have following data in a file called binFile 78 1 79 4 80
I have following data: a=[3 1 6]'; b=[2 5 2]'; c={'ab' 'bc' 'cd'}'; I
I have data like the following: var data = [{ id: 1, date: new

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.