LINQ To SQL 语句的动态程度如何?

发布于 2024-09-01 22:36:55 字数 452 浏览 11 评论 0原文

我需要在运行时根据用户的输入构建 LINQ To SQL 语句,但我似乎不知道如何动态构建 WHERE 子句。

我对以下内容没有问题:

string Filters = "<value>FOO</value>";
Where("FormattedMessage.Contains(@0)",Filters)

但我真正需要的是使整个 WHERE 子句动态化。这样我可以在运行时添加多个条件,如下所示(粗略的想法):

 foreach (Filter filter in filterlist)
            {
                whereclause = whereclause + "&& formattedmessage.contains(filter)";
            }

I have the need to construct a LINQ To SQL statement at runtime based on input from a user and I can't seem to figure out how to dynamically build the WHERE clause.

I have no problem with the following:

string Filters = "<value>FOO</value>";
Where("FormattedMessage.Contains(@0)",Filters)

But what I really need is to make the entire WHERE clause dynamic. This way I can add multiple conditions at runtime like this (rough idea):

 foreach (Filter filter in filterlist)
            {
                whereclause = whereclause + "&& formattedmessage.contains(filter)";
            }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

会发光的星星闪亮亮i 2024-09-08 22:36:56

您还可以考虑使用 PredicateBuilder 类。使用它可以让您动态地将 AND/OR 条件添加到树中。
请参阅http://www.albahari.com/nutshell/predicatebuilder.aspx

You may also consider using the PredicateBuilder class. Using that will allow you to dynamically add AND/OR conditions to your tree.
Refer to http://www.albahari.com/nutshell/predicatebuilder.aspx

你的往事 2024-09-08 22:36:55

我不知道这里使用了什么数据类型,但是为什么不尝试使用通用查询呢?

var query = context.Messages
    .AsQueryable();

foreach (Filter filter in filterlist)
{
    query = query
        .Where(m => m.Contains(filter));
}

这将使用 AND 连接所有条件(如您的问题中所示)。

I don't know what data types are being used here, but why don't you try to use general query?

var query = context.Messages
    .AsQueryable();

foreach (Filter filter in filterlist)
{
    query = query
        .Where(m => m.Contains(filter));
}

this will concatenate all the conditions using AND (as is in your question).

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