0
我正在計數合計金額重量在某一列中。如何計算表中特定列的總數
我試過下面的代碼,但我似乎只得到第一行的值,而不是其餘。
int QuoteId = (from x in db.Quotes where x.Id != null orderby x.Id descending select x.Id).Take(1).SingleOrDefault();
var item = db.QuoteItems.Where(x => x.QuoteId == QuoteId).First();
QuoteItemSectionGroup quoteItemList = new QuoteItemSectionGroup();
foreach (var quoteItem in db.QuoteItemSectionGroups.Where(x => x.QuoteItemId == item.Id).ToList())
{
var total = new QuoteItemSectionGroup
{
Weight = quoteItem.Weight
};
quoteItemList.Weight = total.Weight;
}
所以我的問題是:我怎麼能算重量柱總量在我的表?
感謝您的回答的人。我對c#理論的大部分內容並不瞭解,但是你能否給我一個關於'='之前的'+'的基本解釋? – CareTaker22
太棒了!第二個很棒。 – CareTaker22
@ CareTaker22語法+ =不是c#的理論,但它適用於大多數語言。它是'variable = variable + value //(可變varariable + = value)'的捷徑 –