程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> linq to sql-linq where 條件list動態添加

linq to sql-linq where 條件list動態添加

編輯:編程綜合問答
linq where 條件list動態添加

我有這麼一個需求,
public List query_銷售票(List 條件List)
{
using (var db = new ERPDBDataContext())
{
var linq = from p in db.rec_Piao_Out
join c in db.doc_Customer on p.顧客ID equals c.顧客ID into c1
from cdefault in c1.DefaultIfEmpty()
select p;
return linq.ToList();
}
}

    我怎麼將條件list添加到linq where 之中呢。list是一個條件集合.

最佳回答:


return linq.AsEnumerable()
.Where(x => 條件List.Select(y => y.主鍵).Contains(x.主鍵))
.ToList();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved