Linq to SQL - 运行时多个 where 子句

发布于 2024-10-06 07:47:06 字数 382 浏览 6 评论 0原文

我正在尝试完成此任务,但在查询运行时仅使用我的第一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

み格子的夏天 2024-10-13 07:47:06
  if (!string.IsNullOrEmpty(reference))
        query = query.Where(tb => tb.Reference = reference));
  if (!string.IsNullOrEmpty(reference))
        query = query.Where(tb => tb.Reference = reference));
趁年轻赶紧闹 2024-10-13 07:47:06

尝试

只用“一个”来做

var query = (from tb in dataContext.TableOne
                      where (tb.DateTimeCreated >= fromDate && tb.DateTimeCreated <= toDate.AddDays(1)) && (string.IsNullOrEmpty(reference) || tb.Reference == reference)
                      select tb
               );

,或者像艾夫斯所说的那样,做:

query = query.Where(...)

Try

Just do it in "one"

var query = (from tb in dataContext.TableOne
                      where (tb.DateTimeCreated >= fromDate && tb.DateTimeCreated <= toDate.AddDays(1)) && (string.IsNullOrEmpty(reference) || tb.Reference == reference)
                      select tb
               );

or as Ives says, do:

query = query.Where(...)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文