码迷,mamicode.com
首页 > 其他好文 > 详细

LINQ获取两个List的交集

时间:2014-10-29 17:02:48      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   ar   on   2014   log   new   as   

1.调用:

UserList = UserList.ToList().Intersect(userIDList, new MyUserComparer()).AsQueryable();

2.需要重写的方法:

public class MyUserComparer : IEqualityComparer<MyUser>
    {
        public bool Equals(MyUser x, MyUser y)
        {
            //throw new NotImplementedException();
            return x.UserID == y.UserID;
        }
        public int GetHashCode(MyUser obj)
        {
            return obj.ToString().GetHashCode();
        }
    }


LINQ获取两个List的交集

标签:blog   io   os   ar   on   2014   log   new   as   

原文地址:http://blog.csdn.net/anpan1045535101/article/details/40588017

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!