gpt4 book ai didi

c# - 实体列表,最大日期,最大 row_id

转载 作者:太空宇宙 更新时间:2023-11-03 21:01:42 25 4
gpt4 key购买 nike

我在 SQLServer 中有表。
我在 c# 中有实体 ID 列表。 (例如:50、70、120 等)。
对于每个实体,我只需要获取具有最大日期的行,并在其中获取 row_id 的最大值。

例如:

entity        date_value       row_id
50 30/06/2017 3000<br>
75 30/04/2017 2900<br>
50 30/06/2017 2890<br>
50 30/05/2017 2500<br>
50 30/06/2017 2100<br>
75 30/03/2017 2000<br>

这里我只需要取 2 行:

 50            30/06/2017       3000<br>
75 30/04/2017 2900<br>

并非所有实体都在此表中有行。

你能帮我吗?

谢谢你。

最佳答案

我觉得对你有帮助

升序使用 OrderBy(x => x.Col1).ThenBy(x => x.Col2)

或者对于降序使用这个

 OrderByDescending (x => x.Col1).ThenByDescending (x => x.Col2)

关于c# - 实体列表,最大日期,最大 row_id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44898530/

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