c# – 如何使用linq在一个数组中返回与另一个数组的整数属性不匹配的整数?

前端之家收集整理的这篇文章主要介绍了c# – 如何使用linq在一个数组中返回与另一个数组的整数属性不匹配的整数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下方法签名:
internal static int[] GetStudentIDsThatAreNotLinked(PrimaryKeyDataV1[]
       existingStudents,IQueryable<Student> linkedStudents)

PrimaryKeyData是一个具有ServerID和LocalID整数作为属性的类.
Student是一个类(在其他属性中)有一个名为StudentID的整数.

在英语中,我想要做的是返回一个整数数组,这些整数位于existingStudents […].ServerID但不在linkedStudents […]中.– StudentID

如果’existingStudents’和’linkedStudents’都是整数数组,我会使用如下的linq查询

return from es in existingStudents where
    !linkedStudents.Contains<int>(es) select es;

..然后可以转换为一个整数数组.

我想要做的是给包含一个IEqualityOperator,如果PrimaryKeyData.ServerID == Student.StudentID,它将认为PrimaryKeyData类等于Student类

所以我认为我需要一个lambda表达式,但我对如何构造它非常困惑.

我想我正朝着正确的方向前进,但任何人都可以在最后的障碍中帮助我吗?

解决方法

所以,我的理解是你想获得PrimaryKeyDataV1的所有实例,其中ServerID属性不存在于linkedStudents参数的任何student.StudentID属性中?
internal static PrimaryKeyDataV1[] GetStudentsThatAreNotLinked(PrimaryKeyDataV1[] existingStudents,IQueryable<Student> linkedStudents)
{
    var results = existingStudents.Select(s => s.ServerID)
        .Except(linkedStudents.Select(link => link.StudentID))
        .ToArray();

    return existingStudents.Where(stud => results.Contains(stud.ServerID));
}

或者,如果您只想要一系列ID …

internal static int[] GetStudentIDsThatAreNotLinked(PrimaryKeyDataV1[] existingStudents,IQueryable<Student> linkedStudents)
{
    return existingStudents.Select(s => s.ServerID)
        .Except(linkedStudents.Select(link => link.StudentID))
        .ToArray();
}
原文链接:https://www.f2er.com/csharp/244970.html

猜你在找的C#相关文章