我試圖在亞音速查詢中運行自定義方法。這裏是我的查詢: Page = Pages.SingleOrDefault(o=>Misc.MakeURL(o.Title) == URL);
,我得到這個錯誤: The method 'MakeURL' is not supported
我使用的是亞音速3.任何想法將是巨大的,謝謝。
我有以下查詢: var q = from x in content_item.All()
join y in vendor.All() on x.Vendor_ID equals y.Vendor_ID into tmp
from v in tmp.DefaultIfEmpty()
select new { Z=x.Content_Item_Name,W=((v
當我試圖將多於1個數量的產品添加到訂單表中時,我得到此索引超出了界限錯誤。更清楚的是,當我添加數量爲1或數量爲1的多個產品的產品時,情況並非如此。 插入的代碼在下面,錯誤顯示在sqlcommand行。 SqlCommand command = new SqlCommand("Select Product_id,Product_name,Product_cost,Quantity from Cart