Exemple #1
0
 /// <summary>
 /// Specifies the additional search condition for the rows returned by the query.
 /// </summary>
 /// <param name="prev">A predecessor object.</param>
 /// <param name="condition">Defines the negative condition to be met for the rows to be returned.</param>
 public static WhereOrChainer OrNot(this IWhereOr prev, Expression condition)
 {
     return(new WhereOrChainer((Chainer)prev, condition.Not()));
 }
Exemple #2
0
 /// <summary>
 /// Specifies the additional negative search condition for the rows returned by the query based on the comparison between the two scalar arguments.
 /// </summary>
 /// <param name="prev">A predecessor object.</param>
 /// <param name="argument1">Is the first argument in the equality expression.</param>
 /// <param name="argument2">Is the second argument in the equality expression.</param>
 public static WhereOrChainer OrNot(this IWhereOr prev, ScalarArgument argument1, ValueScalarArgument argument2)
 {
     return(new WhereOrChainer((Chainer)prev, argument1, argument2, false));
 }
Exemple #3
0
 /// <summary>
 /// Specifies a view (subquery) to test for the negation of the existence of rows.
 /// </summary>
 /// <param name="prev">A predecessor object.</param>
 /// <param name="nonSelectView">Is a subquery without the .Select method.</param>
 public static WhereOrChainer OrNotExists(this IWhereOr prev, INonSelectView nonSelectView)
 {
     return(new WhereOrChainer((Chainer)prev, nonSelectView, false));
 }