我在寫一個Linq查詢。有沒有一種方法可以連接到基於某些條件進行查詢?Linq to Entity - 如何連接條件
像查詢
from res in _db.Person
where res.Departments.ID == deptId
select res;
而且如果我有真正的一個條件,我想它是這樣的
from res in _db.Person
where res.Departments.ID == deptId && res.Departments.Type == deptType
select res;
能否請你澄清你所需要的邏輯,你已經聲明你需要或者在另一個評論你需要或? –
使用這種方法http://stackoverflow.com/questions/21512230/where-clause-with-multiple-unknown-conditions –