请考虑以下三个示例列表:
List<string> localPatientsIDs = new List<string> { "1550615", "1688", "1760654", "1940629", "34277", "48083" };
List<string> remotePatientsIDs = new List<string> { "000-007", "002443", "002446", "214", "34277", "48083" };
List<string> archivedFiles = new List<string>{
@"G:\Archive\000-007_20230526175817297.zip",
@"G:\Archive\002443_20230526183639562.zip",
@"G:\Archive\002446_20230526183334407.zip",
@"G:\Archive\14967_20240703150011899.zip",
@"G:\Archive\214_20231213150003676.zip",
@"G:\Archive\34277_20230526200048891.zip",
@"G:\Archive\48083_20240214150011919.zip" };
请注意,中的每个元素archivedFiles
都是 ZIP 文件的完整路径,其名称以 开头,patientID
位于localPatientsIDs
或中remotePatientsIDs
。
例如:@"G:\Archive\000-007_20230526175817297.zip"
:文件名000-007_20230526175817297.zip
以 开头000-007
,它是列表中的一个元素remotePatientsIDs
。
患者 ID 不能同时位于 和localPatientsIDs
,archivedFiles
因此这两个列表之间不允许有重复项。但是archivedFiles
可以包含也位于 中的患者 ID remotePatientsIDs
。
我需要获取文件名以 中存在但不存在于 中archivedFiles
的元素开头的元素。终点是将这些文件解压缩到包含数据库的目录中。remotePatientsIDs
localPatientsIDs
localPatientsIDs
对于给定的示例,我期望得到以下结果:
archivedFilesToUnzip == {
@"G:\Archive\000-007_20230526175817297.zip",
@"G:\Archive\002443_20230526183639562.zip",
@"G:\Archive\002446_20230526183334407.zip",
@"G:\Archive\214_20231213150003676.zip" }
那么,如何使用 LINQ 来做到这一点?
由于我缺乏知识,我期望它会简单到如下程度:
List<string> archivedFilesToUnzip = archivedFiles.Where(name => name.Contains(remotePatients.Except(localPatients)))
我甚至无法编译它,因为Contains
可能无法遍历列表成员,并且我收到消息:
CS1503: Argument 1: cannot convert from 'System.Collections.Generic.IEnumerable<string>' to 'string'
那么,到目前为止,我最好的尝试是以下句子(我承认它对我来说似乎有点混乱)。它总是返回一个空列表。
List<string> archivedFilesToUnzip = archivedFiles.Where(name => archivedFiles.Any(x => x.ToString().Contains(remotePatients.Except(localPatients).ToString()))).ToList();
我发现这些有用的帖子帮助我更好地理解Where
和之间的区别Select
:
- Entity Framework中的 Select 和 Where 之间的区别
- Linq:Select 和 Where 之间有什么区别
另外,我一直在寻找使用 LINQ 的任何方向:
以及其他链接,但我仍然找不到可行的解决方案。