Example #1
0
        public Builder ORDER_BY(SqlColumn column, string direction = null)
        {
            if (direction != null)
            {
                return this.ORDER_BY("{0} {1}", column, direction);
            }

            return this.ORDER_BY("{0}", column);
        }
Example #2
0
 public Builder SET(SqlColumn column, object value)
 {
     return this.SET("{0} = {1}", column, value);
 }
Example #3
0
 public Builder GROUP_BY(SqlColumn column)
 {
     return this.GROUP_BY("{0}", column);
 }