コード例 #1
0
 public static string GetOrderText(OrderBy_ myOrderBy)
 {
     if (myOrderBy == null)
     {
         return("");
     }
     return(myOrderBy.GetText());
 }
コード例 #2
0
        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;
        }