gpt4 book ai didi

.net - 为 Linq 分组选择特定列

转载 作者:行者123 更新时间:2023-12-01 09:07:39 24 4
gpt4 key购买 nike

我有一个嵌套的 ListView。有点像这个:
http://mattberseth.com/blog/2008/01/building_a_grouping_grid_with.html

以及以下 Linq 查询:

var query = (from c in context.customer_order
where c.id > 8000
group c by c.person_id into cgroup
select new { cgroup.Key, Orders = cgroup });

我只想将几个特定的​​列加载到 cgroup 项中。
就像您通常使用 SQL 中的“select”语句一样。
那可能吗?我在表中有一个 blob,如果包含它,加载需要很长时间。

最佳答案

var query = (from c in context.customer_order
where c.id > 8000
group c by c.person_id into cgroup
select new { cgroup.Key, Orders =
from item in cgroup
select new { item.Foo, item.Bar }
});

关于.net - 为 Linq 分组选择特定列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4872160/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com