Пример #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)));
 }