Linq 查询获取计数

发布于 2024-11-05 10:36:37 字数 191 浏览 0 评论 0原文

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

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

请帮助我编写查询。

谢谢, 巴拉特

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

How can I get the count of id where IsEnquiry=true by using a Linq Query

Pls Help me to write the query.

Thanks,
Bharath

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

痴骨ら 2024-11-12 10:36:37
int count = (from row in db.Table
             where row.IsEnquiry == true
             select row).Count();
int count = (from row in db.Table
             where row.IsEnquiry == true
             select row).Count();
浪推晚风 2024-11-12 10:36:37

试试这个

var count = db.Table.Where(x=>x.IsEnquiry).Count()

try this

var count = db.Table.Where(x=>x.IsEnquiry).Count()
思念绕指尖 2024-11-12 10:36:37

试试这个代码:

int count = (from tableObj in TableName 
             where tableObj
             .Website == "http://mywebsite.com" 
             select tableObj 
             .Website).Count()

Try this code:

int count = (from tableObj in TableName 
             where tableObj
             .Website == "http://mywebsite.com" 
             select tableObj 
             .Website).Count()
巷雨优美回忆 2024-11-12 10:36:37

试试这个:

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

Try this :

int count = (from row in db.Table
             where row.IsEnquiry == true
             select row.id).Count();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文