函数中的LINQ查询,该函数使用param来更改结果集
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数中的LINQ查询,该函数使用param来更改结果集相关的知识,希望对你有一定的参考价值。
IQueryable<Person> GetManagersWithName (IQueryable<Person> people, string name) { return from p in people where p.Name == name && // implicit closure over 'name' p.PersonType == PersonType.Manager select p; }
以上是关于函数中的LINQ查询,该函数使用param来更改结果集的主要内容,如果未能解决你的问题,请参考以下文章