我有一個包含多個成本條目的sql表以獲得唯一的ID。實體框架選擇列的總和大於x的位置
這裏是表的簡化版本:
Table:
{
public int Id {get;set;}
public DateTime date {get;set;}
public int Cost {get;set;}
}
我需要建立一個EF查詢,做到以下幾點:
select from the table where x.date.Date = DateTime.Now.date && SUM(x.cost) > 100.00)
and it should group by x.Id
你是如何分組數據?或者你的意思是「哪裏成本> 100」? – DavidG
非常有效的一點,我完全忘了把這個添加到我的問題中。我現在添加了它。 – Zapnologica