コード例 #1
0
 /// <summary>
 /// 动态化查讯(转换成表达式树集合)  注意,int参数不会判断为0的值
 /// </summary>
 /// <param name="dynamicTree"></param>
 /// <returns></returns>
 public IQuerySet <T> Where(Dictionary <string, DynamicTree> dynamicTree)
 {
     WhereExpressionList.AddRange(SqlProvider.FormatDynamicTreeWhereExpression <T>(dynamicTree));
     return(this);
 }