Esempio n. 1
0
 internal ScalarArgument(CaseExpressionChainer arg)
     : this(arg as Chainer)
 {
     SetArgType(arg);
 }
Esempio n. 2
0
 /// <summary>
 /// Represents a column in the select statement.
 /// </summary>
 /// <param name="arg">Is a CASE statement.</param>
 public Column(CaseExpressionChainer arg)
     : this(arg as Chainer)
 {
     SetArgType(arg);
 }
Esempio n. 3
0
 internal FunctionArgument(CaseExpressionChainer arg)
     : this(arg as Chainer)
 {
     SetArgType(arg);
 }
Esempio n. 4
0
 internal VariableArgument(CaseExpressionChainer arg)
     : this(arg as Chainer)
 {
     SetArgType(arg);
 }
Esempio n. 5
0
 internal AggregateArgument(CaseExpressionChainer arg)
     : this(arg as Chainer)
 {
     SetArgType(arg);
 }
Esempio n. 6
0
 internal OrderingArgument(CaseExpressionChainer arg)
     : this(arg as Chainer)
 {
     SetArgType(arg);
 }
Esempio n. 7
0
 /// <summary>
 /// Specifies that the values in the specified column should be sorted in ascending order. ASC is the default sort order. Null values are treated as the lowest possible values.
 /// </summary>
 /// <param name="column">Is a column expression of a CASE clause on which to sort the query result set.</param>
 public static OrderedChainer AsAsc(this CaseExpressionChainer column)
 {
     return(new OrderedChainer(column, SortOrder.Asc));
 }
Esempio n. 8
0
 internal ValueScalarArgument(CaseExpressionChainer arg)
     : base(arg)
 {
 }
Esempio n. 9
0
 /// <summary>
 /// Defines the column collation.
 /// </summary>
 /// <param name="column">A column.</param>
 /// <param name="collation">A collaction name.</param>
 public static CollateChainer Collate(this CaseExpressionChainer column, string collation = "DATABASE_DEFAULT")
 {
     return(new CollateChainer(column, collation));
 }