To remove duplicates based on a field

Source: Internet
Author: User

It's easy to repeat the data in the list result, as long as. dinstinct ().


However, if you want to remove duplicate data based on a field, the above method will not be helpful. We need to rewrite a method. Let's look at the example directly.

[Serializable]    public class HomePageUserModel    {        public int UserID { get; set; }        public string TitleUserName { get; set; }        public string ShowUserName { get; set; }        public DateTime? ExcuteTime { get; set; }    }    [Serializable]    public class HomePageUserModelComparer : EqualityComparer<HomePageUserModel>    {        public override bool Equals(HomePageUserModel x,HomePageUserModel y)        {            if (x == null && y == null)            {                return false;            }            else            {                return x.TitleUserName == y.TitleUserName;            }        }        public override int GetHashCode(HomePageUserModel obj)        {            return obj.TitleUserName.GetHashCode();        }    }



You can call this operation to deduplicate a custom field.


To remove duplicates based on a field

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.