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