public static string GetOrderText(OrderBy_ myOrderBy) { if (myOrderBy == null) { return(""); } return(myOrderBy.GetText()); }
public Where_() { myWhereRelation = new Condition(); myWhereRelation.WhereParent = this; myAndOr = new AndOr(); myAndOr.WhereParent = this; myOrderBy = new OrderBy_(); //myGroupBy = new GroupBy_(); //myGroupBy.WhereParent = this; myWhereEntity = new WhereEntity(); myWhereEntity.ConditionType = ConditionTypeEnum.None; }