LINQ Lambda を使用して多くのテーブルをリンクしようとしていますが、サブクエリを処理して ProducedBy プロパティの値を取得するときに問題が発生しています。メッセージが表示されます:このメソッドは、実体化されたクエリ結果メッセージに対してサポートされていません。
手を貸してもらえますか?
var temp = db.MK_Product_Variant
.Join(db.MK_Products, a => a.ProductId, b => b.ID, (a, b) => new { a, b })
.Join(db.MK_Product_Category, c => c.b.CategoryId, d => d.ID, (c, d) => new { c, d })
.Join(db.MK_Game_Type, e => e.d.GameType, f => f.ID, (e, f) => new { e, f })
.Where(g=> !db.MK_MP_Variant.Select(h=>h.ID).Contains( g.e.c.a.ID)) /* My Store only */
.Select(i => new {
Category = i.e.d.Name,
ItemType = i.f.Name,
ItemNo = i.e.c.a.ID,
Enabled = i.e.c.b.Enabled,
Status = "",
ProducedBy = (db.MK_Products.Join(db.MK_Production_Resource,k=>k.ID,l=>l.Item,(k,l) => new {k,l})
.Join(db.MK_Production_Staff,m=>m.l.Staff,n=>n.ID,(m,n) => new {m,n})
.Where(o => o.m.k.ID == i.e.c.a.ID)
.Select(p=>p.n.Location).DefaultIfEmpty("").ToList())[0],
ReleaseDate = i.e.c.a.ReleaseDate,
ReleasingQty = i.e.c.a.Qty,
Price = i.e.c.a.Price_MKD,
QtyPurchaseFromUser = "",
QtySold = db.MK_Product_VariantHistory.Where(j => j.Variant == i.e.c.a.ID && j.PurchaseDate >= startDate && j.PurchaseDate <= stopDate && !(db.MK_MP_Variant.Select(t => t.ID)).Contains(i.e.c.a.ID)).Count()
});
そして、これは私がそれを使用したいコード行です:
int count = 0;
foreach (var item in temp)
{
result.Add(count, new string[] { item.Category, item.ItemType, item.ItemNo.ToString(), item.Enabled.ToString(), "", item.ProducedBy.Count()==0?"":item.ProducedBy.FirstOrDefault().Country , string.Format("{0:yyyy-MM-dd hh:mm:ss tt}", item.ReleaseDate), "", "", item.ReleasingQty.ToString(), "", item.QtySold.ToString(), item.QtyPurchaseFromUser.ToString(), string.Format("{0:#0}", item.Price), "", "", "", "", "" });
count++;
}