1

如果我使用 Count,这条 SQL 语句将如何与 LINQ 一起使用?

select count(*) from GoalCard
where GoalCard.Completed_Date is not null

提前致谢!

更新:

我会删除“过于本地化”的投票,因为有些人使用谷歌来查找如何在 LINQ 语句中使用 count 。

4

2 回答 2

2

用这个:

context.GoalCards.Count(gc => gc.Completed_Data != null);
于 2012-05-14T13:38:46.350 回答
0

数数:

context.GoalCards.Count(x => x.Completed_Date.HasVale)
于 2012-05-14T13:38:41.747 回答