LINQ 返回列表中与另一个列表中的任何名称(字符串)匹配的项目

LINQ return items in a List that matches any Names (string) in another list(LINQ 返回列表中与另一个列表中的任何名称(字符串)匹配的项目)
本文介绍了LINQ 返回列表中与另一个列表中的任何名称(字符串)匹配的项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有 2 个列表.1是产品的集合.另一个是商店中的产品集合.

I have 2 lists. 1 is a collection of products. And the other is a collection of products in a shop.

如果名称与产品中的任何名称匹配,我需要能够返回所有 shopProducts.

I need to be able to return all shopProducts if the names match any Names in the products.

我有这个,但它似乎不起作用.有什么想法吗?

I have this but it doesn't seem to work. Any ideas?

    var products = shopProducts.Where(p => p.Name.Any(listOfProducts.
             Select(l => l.Name).ToList())).ToList();

我需要说给我在另一个列表中存在名称的所有商店产品.

I need to say give me all the shopproducts where name exists in the other list.

推荐答案

var products = shopProducts.Where(p => listOfProducts.Any(l => p.Name == l.Name))
                           .ToList();

对于 LINQ-to-Objects,如果 listOfProducts 包含许多项目,那么如果您创建一个 HashSet,您可能会获得更好的性能包含所有必需的名称,然后在您的查询中使用它.HashSet 与任意 IEnumerable 的 O(n) 相比,具有 O(1) 的查找性能.

For LINQ-to-Objects, if listOfProducts contains many items then you might get better performance if you create a HashSet<T> containing all the required names and then use that in your query. HashSet<T> has O(1) lookup performance compared to O(n) for an arbitrary IEnumerable<T>.

var names = new HashSet<string>(listOfProducts.Select(p => p.Name));
var products = shopProducts.Where(p => names.Contains(p.Name))
                           .ToList();

对于 LINQ-to-SQL,我希望(希望?)提供程序可以自动优化生成的 SQL,而无需对查询进行任何手动调整.

For LINQ-to-SQL, I would expect (hope?) that the provider could optimise the generated SQL automatically without needing any manual tweaking of the query.

这篇关于LINQ 返回列表中与另一个列表中的任何名称(字符串)匹配的项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Is Unpivot (Not Pivot) functionality available in Linq to SQL? How?(Linq to SQL 中是否提供 Unpivot(非 Pivot)功能?如何?)
How to know if a field is numeric in Linq To SQL(如何在 Linq To SQL 中知道字段是否为数字)
Linq2SQl eager load with multiple DataLoadOptions(具有多个 DataLoadOptions 的 Linq2SQl 急切加载)
Extract sql query from LINQ expressions(从 LINQ 表达式中提取 sql 查询)
LINQ Where in collection clause(LINQ Where in collection 子句)
Orderby() not ordering numbers correctly c#(Orderby() 没有正确排序数字 c#)