如何从另一个集合中获取对象集合?

发布于 2024-12-03 22:01:30 字数 318 浏览 3 评论 0原文

假设我有一个集合定义为:

IEnumerable<Employee> Employees;

实体 Employee 具有属性 Person。 我已经从 Ria 服务加载了员工,包括具有急切加载功能的人员。 现在我想从Employees中获取Person的集合,比如

IEnumerable<Person> People = Employees.Person;

How to use Linq to get all Person?对于这种情况还有其他解决方案吗?

Suppose I have a collection defined as:

IEnumerable<Employee> Employees;

Entity Employee has property Person.
I have loaded Employees from Ria service including Person with eager-loading.
Now I want to get the collection of Person from Employees, something like

IEnumerable<Person> People = Employees.Person;

How to use Linq to get all Person? any other solution for this case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

唔猫 2024-12-10 22:01:30

除非我遗漏了一些东西,否则它应该很简单(假设 Person 不是另一个集合):

var persons = Employees.Select(e => e.Person);

Unless I'm missing something, it should be as easy as (assuming Person isn't another collection):

var persons = Employees.Select(e => e.Person);
难以启齿的温柔 2024-12-10 22:01:30

尝试以下操作

IEnumerable<Employee> collection = ...;
IEnumerable<Person> persons = collection.Select(x => x.Person);

Try the following

IEnumerable<Employee> collection = ...;
IEnumerable<Person> persons = collection.Select(x => x.Person);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文