gpt4 book ai didi

linq-to-sql - 使用 linq-to-sql 返回计数

转载 作者:行者123 更新时间:2023-12-03 23:38:44 26 4
gpt4 key购买 nike

我想返回自特定日期以来的新用户数。

用户表有:UserID、username、dateJoined。

SELECT COUNT(USERID)
FROM Users
where dateJoined > @date

这在 linq-to-sql 中看起来如何?

您可以使用关键字 COUNT 吗?

最佳答案

你可以走两条路线:

var count = (from u in context.Users where u.datJoined > date select u).Count();

要么
var count = context.Users.Where( x => x.datJoined > date).Count();

两者是等效的,这实际上归结为个人喜好问题。

关于linq-to-sql - 使用 linq-to-sql 返回计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1255154/

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