我已將以下代碼塊添加到我的WP7應用程序中,但不確定錯誤的含義;WP7 LINQ to SQL和Aggregate查詢
private void GetTodaysTotal()
{
// Define the query to gather all of the to-do items.
var boughtItemsToday = (from DBControl.MoneySpent
bought in BoughtItemDB.BoughtItems
select bought.ItemAmount).Sum();
// Execute the query and place the results into a collection.
BoughtItemsToday = new ObservableCollection<DBControl.MoneySpent> boughtItemsToday);
}
我得到的錯誤是在行;
BoughtItemsToday = new ObservableCollection<DBControl.MoneySpent> boughtItemsToday);
並且是;
的最佳重載方法匹配「System.Collections.ObjectModel.ObservableCollection.ObservableCollection(System.Collections.Generic.List)」有一些無效參數
我知道這是一件與LINQ查詢返回一個十進制值,但我不知道如何解決它。我打算將結果綁定到XAML TextBlock中。
我'd希望從缺少的語法錯誤'(',但這只是我 –