Ejemplo n.º 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);
        }
Ejemplo n.º 2
0
 public Builder SET(SqlColumn column, object value)
 {
     return this.SET("{0} = {1}", column, value);
 }
Ejemplo n.º 3
0
 public Builder GROUP_BY(SqlColumn column)
 {
     return this.GROUP_BY("{0}", column);
 }