使用Linq的Intersect与Except方法的实例

实例描述

现有某班学生的两份成绩,两份成绩中存在一些不一致的记录。需借助于编程方法找出这些不一致的记录。

实例代码

using System;
using System.Collections.Generic;
using System.Linq;
namespace IntersectAndExceptExp
{
    class Program
    {
        static void Main(string[] args)
        {
            List<Student> studentList1 = newList<Student>() {
                new Student(){StudentId=1,Score=64},
                new Student(){StudentId=2,Score=85},
                new Student(){StudentId=3,Score=78},
                new Student(){StudentId=4,Score=94},
                new Student(){StudentId=5,Score=90}
            };
            List<Student> studentList2 = newList<Student>() {
                new Student(){StudentId=1,Score=64},
                new Student(){StudentId=2,Score=80},
                new Student(){StudentId=3,Score=78},
                new Student(){StudentId=4,Score=94},
                new Student(){StudentId=5,Score=95}
            };
            var both = studentList1.Intersect(studentList2,new StudentComparer());
            var diff1 =studentList1.Except(both, new StudentComparer());
            var diff2 =studentList2.Except(both, new StudentComparer());
            Console.WriteLine("-------------下面是两份成绩中不同的记录--------------");
            Console.WriteLine("-------------第一份学生成绩--------------");
            foreach (var s in diff1)
            {
                Console.WriteLine("StudentId:"+s.StudentId+";Score:"+s.Score);
            }
            Console.WriteLine("-------------第一份学生成绩--------------");
            foreach (var s in diff2)
            {
                Console.WriteLine("StudentId:"+ s.StudentId + ";Score:" + s.Score);
            }
        }
    }
    public class Student
    {
        public int StudentId { get; set; }
        public int Score { get; set; }
    }
    public class StudentComparer : IEqualityComparer<Student>
    {
        public bool Equals(Student x, Studenty)
        {
            if (Object.ReferenceEquals(x, y)) returntrue;
            return x != null && y != null&& x.StudentId == y.StudentId && x.Score == y.Score;
        }
        public int GetHashCode(Student obj)
        {
            int hashStudentId =obj.StudentId.GetHashCode();
            int hashScore =obj.Score.GetHashCode();
            return hashStudentId ^ hashScore;
        }
    }
}

代码说明

先使用Intersect方法生成两份记录的交集,该方法会使用传入的比较器对值进行比较决定记录是否相同。基于前步生成的交集,再使用Except方法找出两份记录中不一致的记录,该方法同样使用传入的比较器对值进行比较决定记录是否相同。

执行结果

时间: 2024-10-09 18:54:45

使用Linq的Intersect与Except方法的实例的相关文章

LINQ中in的实现方法-LINQ To Entities如何实现查询 select * from tableA where id in (1,2,3,4)

如果用in是字符串类型无问题,可以直接这样用 var result = SNFService.Instance.ModuleService.GetList(UserInfo).Where(entity => entity.DeletionStateCode == 0 ).Where(entity => urls.Contains((entity.NavigateUrl == null ? "" : entity.NavigateUrl).ToLower())).OrderB

SQL Server 中关于EXCEPT和INTERSECT的使用方法

熟练使用SQL Server中的各种使用方法会给查询带来非常多方便.今天就介绍一下EXCEPT和INTERSECT.注意此语法仅在SQL Server 2005及以上版本号支持. EXCEPT是指在第一个集合中存在,可是不存在于第二个集合中的数据. INTERSECT是指在两个集合中都存在的数据. 測试例如以下: create table t1(id int,mark char(2)) go create table t2(id int,mark char(2)) go insert into

LINQ to Entities 不识别方法“System int string 转换的问题

这个问题困扰了挺久,网上找了挺多方法 都太好使. 分几种情况. 1.如果查询结果 转换,那比较容易. var q = from c in db.Customers where c.Country == "UK" || c.Country == "USA" select new { Phone = c.Phone, InternationalPhone = PhoneNumberConverter(c.Country, c.Phone) }; public strin

LINQ to Entities 不识别方法“System.String ToString() 的解决方法

今天在做一个页面的时候出现了LINQ to Entities 不识别方法"System.String ToString()"的错误,对于源码IQueryable<SelectListItem> items = roleInfoServer.Get(r => true).Select(r => new SelectListItem() { Value = r.Id.ToString(), Text = r.RoleName });找了好长的时间没有找到原因.无奈之

linq to entity不识别方法"System.String ToString()"

将班级id以字符串形式输入如:"1111,1112,1113".数据库里的id为int型,在数据路里找到匹配的相应班级转换成列表.在这里爆出问题:不识别方法"System.String ToString()",跪求大神提出解决方案.public IEnumerable<Class1> FindClassesByIDs(string ids)        {            var r = from c in this.DbContext.Clas

LINQ to Entities 不识别方法“Int32 Parse(System.String)”,因此该方法无法转换为存储表达式。解决

  问题描述 最近在用LINQ to Entities,看看下面的代码 //获取分页数据 var admins = from aa in db.VAccountAdmins select aa; //处理过滤规则 if (null != filterRules) { JArray roles = (JArray) JsonConvert.DeserializeObject(filterRules); foreach (var fr in roles) { string field = fr["f

LinQ To Objects 高级查询方法

什么是LinQ To Objects? 用一个例子解释,首先定义一个数组,查询数组中的最大值: int[] arr = { 123, 2, 3, 45, 654, 2324, 897, 56, 6554, 4, 3, 6, 8, 434 }; 旧的方法: int max=0 ; foreach(int a in arr) { if(a>=max) max=a; } Console.Write("最大值:"+ max); LinQ To Objects方法: Console.Wri

《Entity Framework 6 Recipes》中文翻译系列 (26) ------ 第五章 加载实体和导航属性之延缓加载关联实体和在别的LINQ查询操作中使用Include()方法

翻译的初衷以及为什么选择<Entity Framework 6 Recipes>来学习,请看本系列开篇 5-7  在别的LINQ查询操作中使用Include()方法 问题 你有一个LINQ查询,使用了类似这样的操作 group by,join,和where:你想使用Include()方法预先加载额外的实体.另外你想使用Code-First来管理数据访问. 解决方案 假设你有如图5-22所示的概念模型 图5-22 一个简单的包含Club和Event以及它们之间一对多关联的模型 在Visual S

LINQ to Entities 不识别方法 ...

今天遇到一个错误,记录一下,以备以后用到. System.NotSupportedException: LINQ to Entities 不识别方法“System.DateTime AddMinutes(Double)”,因此该方法无法转换为存储表达式. 导致错误的代码是这一句 其中在代码中使用了AddMinutes方法,不能被识别,解决办法, 在使用时调用一下Compile()方法转换一下即可. AsNoTracking()方法是阻止EF的默认缓存机制,在System.Data.Entity命