我有一个Tenants列表(称之为TenantList),它由Tenant对象组成,它们都有一个ID属性。如何返回由其ID属性组成的可枚举项?
答案 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);