我有一个 linq 语句,它根据 where 子句返回记录列表。
这个 where 子句检查两个参数值。
其中一个参数是可选的。
所以我需要一个建议,如果我可以根据可选参数切换我的 where 子句,
比如这样
if(locid==0)
{
where (p.CustomerID == custid)
}
else{
where (p.CustomerID == custid) & (p.LocationID == locid )
}
任何人都可以帮助我如何完成这项工作。
谢谢