示例#1
0
 public void Order(Type type, string orderFieldList)
 {
     this.queryList.Add(new ExpressionKeyValueItem(TQueryHelperTypeEnum.ORDERBY, TQueryReflectionHelper.GetFieldString(orderFieldList)));
 }
示例#2
0
 public void Group(Type type, string groupFieldList)
 {
     this.queryList.Add(new ExpressionKeyValueItem(TQueryHelperTypeEnum.GROUPBY, TQueryReflectionHelper.GetFieldString(groupFieldList)));
 }
示例#3
0
 public void Select(Type type, string fieldNameList)
 {
     this.queryList.Add(new ExpressionKeyValueItem(TQueryHelperTypeEnum.SELECT, TQueryReflectionHelper.GetFieldString(fieldNameList)));
 }