Linq 集合比较
Posted 一杯水M
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linq 集合比较相关的知识,希望对你有一定的参考价值。
List<RemindTbl> l_lstRemind = (from x in RemindTbl where (from y in RemindTblOld where x.AttendeeAddress == y.AttendeeAddress && x.AttendeeAddress != ConstData.ScreenConst.RemindStandard select y).Any() select x).ToList();
以上方法:比较两个集合数据,并取得RemindTbl中多余数据。
以上是关于Linq 集合比较的主要内容,如果未能解决你的问题,请参考以下文章