Linq to SQL - 运行时多个 where 子句
我正在尝试完成此任务,但在查询运行时仅使用我的第一个 where 子句。
这需要适用于 .Net 3.5,因此 4.0 中的WhereIf 不可用。
var query =
from tb in dataContext.TableOne
where tb.DateTimeCreated >= fromDate &&
tb.DateTimeCreated <= toDate.AddDays(1)
select tb;
if (!string.IsNullOrEmpty(reference))
{
query.Where(tb => tb.Reference = reference));
}
I am trying to accomplish this but only my first where clause is getting used when the query runs.
This needs to for for .Net 3.5 so the WhereIf in 4.0 is not usable.
var query =
from tb in dataContext.TableOne
where tb.DateTimeCreated >= fromDate &&
tb.DateTimeCreated <= toDate.AddDays(1)
select tb;
if (!string.IsNullOrEmpty(reference))
{
query.Where(tb => tb.Reference = reference));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
只用“一个”来做
,或者像艾夫斯所说的那样,做:
Try
Just do it in "one"
or as Ives says, do: