gpt4 book ai didi

linq - Linq查询获取计数

转载 作者:行者123 更新时间:2023-12-03 13:39:24 25 4
gpt4 key购买 nike

id | IsEnquiry  | 
=================
1 true
2 false
3 false
4 true


如何使用Linq查询获取IsEnquiry = true的id的计数

请帮我写查询。

谢谢,
巴拉斯

最佳答案

int count = (from row in db.Table
where row.IsEnquiry == true
select row).Count();

关于linq - Linq查询获取计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5919415/

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