从对象列表返回属性列表

时间:2010-07-21 16:02:29

标签: c# linq

我有一个Tenants列表(称之为TenantList),它由Tenant对象组成,它们都有一个ID属性。如何返回由其ID属性组成的可枚举项?

3 个答案:

答案 0 :(得分:9)

您可以使用

var result = TenantList.Select(t => t.ID)

var result = from tenant in TenantList select tenant.ID

答案 1 :(得分:2)

TenantList.Select(t => t.ID)

答案 2 :(得分:0)

TenantList.Select(t => t.ID);