C# Distinct使用

Posted Danlis

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Distinct使用相关的知识,希望对你有一定的参考价值。

官网Enumerable.Distinct

https://msdn.microsoft.com/zh-cn/library/bb338049.aspx

CSDN中作者oriency755

关于Distinct的使用:

http://blog.csdn.net/oriency755/article/details/13773557

使用

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Transactions;

namespace Activity
{
    public class ActivitySceneService
    {
        public List<DrawPlay> GetDraw(int activitySceneID)
        {
            using (var dbContext = new DbContext())
            {
                var merchant = dbContext.Find<Merchant>(1);
                var playList = new List<DrawPlay>();
                    playList = dbContext.Draw001Plays.Where(u => u.ActivitySceneID == activitySceneID).Distinct(
                        new Compare<DrawPlay>((x, y) => (x != null && y != null && x.UserID == y.UserID))).ToList();//放置比较器
                return playlist;
            }
        }
    }

    public delegate bool CompareDelegate<T>(T x, T y);
    public class Compare<T> : IEqualityComparer<T>
    {
        private CompareDelegate<T> _compare;
        public Compare(CompareDelegate<T> d)
        {
            this._compare = d;
        }

        public bool Equals(T x, T y)
        {
            if (_compare != null)
            {
                return this._compare(x, y);
            }
            else
            {
                return false;
            }
        }

        public int GetHashCode(T obj)
        {
            return obj.ToString().GetHashCode();
        }
    }
}
Test

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;

namespace NAMESPACE
{
    public class CLASSNAME
    {
        public void Test()
        {
            using (var dbContext = new DbContext())
            {
                 dbContext.DATABASE.Distinct(
                        new Compare<MODELTYPE>((x, y) => (x != null && y != null && x.FIELD> VALUE && y.FIELD> VALUE))).ToList();
            }
        }
     }

//使用委托
    public delegate bool CompareDelegate<T>(T x, T y);
    public class Compare<T> : IEqualityComparer<T>
    {
        private CompareDelegate<T> _compare;
        public Compare(CompareDelegate<T> d)
        {
            this._compare = d;
        }

        public bool Equals(T x, T y)
        {
            if (_compare != null)
            {
                return this._compare(x, y);
            }
            else
            {
                return false;
            }
        }

        public int GetHashCode(T obj)
        {
            return obj.ToString().GetHashCode();
        }
    }
}
和上一个差不多

 

Distinct项目内使用

using Qxun.Framework.Utility

var onlineRecords = dbContext.OnLineRecords.ToList().Distinct(new CompareExtend<OnLineRecord>((x, y) => x != null && y != null && x.MerchantID == y.MerchantID && x.ActivitySceneID == y.ActivitySceneID));

****************************************CompareExtend类********************************************************

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Qxun.Framework.Utility
{
    public delegate bool CompareDelegate<T>(T x, T y);
    public class CompareExtend<T> : IEqualityComparer<T>
    {
        private CompareDelegate<T> _compare;
        public CompareExtend(CompareDelegate<T> d)
        {
            this._compare = d;
        }

        public bool Equals(T x, T y)
        {
            if (_compare != null)
            {
                return this._compare(x, y);
            }
            else
            {
                return false;
            }
        }

        public int GetHashCode(T obj)
        {
            return obj.ToString().GetHashCode();
        }
    }
}
distinct 项目中使用

 

以上是关于C# Distinct使用的主要内容,如果未能解决你的问题,请参考以下文章

C# 最有用的(自定义)代码片段是啥? [关闭]

VS2015使用技巧 打开代码片段C#部分

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?

C# LINQ 使用 DISTINCT 计数元素

此 Canon SDK C++ 代码片段的等效 C# 代码是啥?

是否可以动态编译和执行 C# 代码片段?