LINQ-to-SQL在动态列上搜索?

时间:2009-09-22 02:21:46

标签: c# linq linq-to-sql

使用System.Linq.Dynamic命名空间,我能够根据当前用户控件中存在的列(我们在不同地方使用的可搜索网格)构建一个通用列列表进行搜索。该过程很简单,将列列表显示给当前用户,将列附加到where子句中的动态查询表达式中,查看整个连接序列是否包含指定的字符串。

这实现了两件事,让用户使用单个搜索框(谷歌样式)进行搜索,该搜索框可以在用户看到的所有网格中以相同的方式工作,并将搜索转移到数据库。

以下是目前的工作原理(结果= IQueryable<T&gt;或IEnumerable<T>):

var se = GetGridSearchExpression(grid);
if (se != null) result = result.Where(se, grid.SearchText.ToLower());

private static string GetGridSearchExpression(Grid grid)
{
  if (grid.SearchText.IsNullOrEmpty()) return null;
  var sb = new StringBuilder();
  foreach (var s in grid.ColumnNames)
  {
    sb.AppendFormat("{0} {1} ",
      sb.Length == 0 ? string.Empty : "+\"|^|\"+", s);
  }
  return string.Format("({0}).ToLower().Contains(@0)", sb);
}

印有“| ^ |” string是随机的,以防止单个列上的搜索与下一列匹配,例如列“博”“布莱恩特”从匹配搜索“鲍勃”,搜索的结果是“博| ^ |科比”阻止比赛。

Nullables是问题的来源,有DateTime吗?或Nullable类型例如导致以下错误:

Expression of type 'System.Nullable`1[System.DateTime]' cannot be used for 
parameter of type 'System.Object' of method 
'System.String Concat(System.Object, System.Object)'

这是DynamicQueryable的一部分正在爆炸:

Expression GenerateStringConcat(Expression left, Expression right) {
  return Expression.Call(null,
    typeof (string).GetMethod("Concat", new[] {typeof (object), typeof (object)}),
    new[] {left, right});
}

到目前为止,我发现消除此问题的唯一方法是将表达式构建器中的append替换为:

  foreach (var s in grid.ColumnNames)
  {
    sb.AppendFormat("{0}({1} != null ? {1}.ToString() : string.Empty)", 
      sb.Length == 0 ? string.Empty : "+\"|^|\"+", s);
  }

由于我们处于LINQ to SQL,因此会导致一个膨胀的case语句。给定从数据库加载每个对象然后搜索的替代方法,最多可以接受8-10列的case语句。

是否有更干净或更简单的方法来完成全部或部分内容?

已编辑:感谢Marc ...我从不在我的代码中的任何地方使用GetEnumerator,总是使用foreach或.ForEach()......但由于某些原因,它使调试变得更容易,尽管我现在不记得为什么。清除了当前代码的问题。

1 个答案:

答案 0 :(得分:5)

我想知道你是否可以测试Nullable<T>并使用条件?但我真的想知道离开Dynamic LINQ Library会更好;考虑(未经测试):

string [] columnNames = {“Name”,“DoB”};             string query =“2008”;

        var row = Expression.Parameter(typeof(Data), "row");
        Expression body = null;
        Expression testVal = Expression.Constant(query, typeof(string));
        foreach (string columnName in columnNames)
        {
            Expression col = Expression.PropertyOrField(row, columnName);
            Expression colString = col.Type == typeof(string)
                ? col : Expression.Call(col, "ToString", null, null);
            Expression colTest = Expression.Call(
                colString, "Contains", null, testVal);

            if (col.Type.IsClass)
            {
                colTest = Expression.AndAlso(
                    Expression.NotEqual(
                        col,
                        Expression.Constant(null, typeof(string))
                    ),
                    colTest
                );
            }
            else if (Nullable.GetUnderlyingType(col.Type) != null)
            { // Nullable<T>
                colTest = Expression.AndAlso(
                    Expression.Property(col, "HasValue"),
                    colTest
                );
            }
            body = body == null ? colTest : Expression.OrElse(body, colTest);
        }
        Expression<Func<Data, bool>> predicate
            = body == null ? x => false : Expression.Lambda<Func<Data, bool>>(
                  body, row);


        var data = new[] {
            new Data { Name = "fred2008", DoB = null},
            new Data { Name = "barney", DoB = null},
            new Data { Name = null, DoB = DateTime.Today},
            new Data { Name = null, DoB = new DateTime(2008,1,2)}
        };
        foreach (Data x in data.AsQueryable().Where(predicate))
        {
            Console.WriteLine(x.Name + " / " + x.DoB);
        }

然后你应该可以在常规 LINQ中使用Where(predicate);请注意,由于空值,这不适用于LINQ到对象(IEnumerable<T>),但在LINQ-to-SQL中可能是正常的;如果你需要它在LINQ-to-Objects中工作也很好 - 只需要在上面添加一些细节(让我知道)。