Sql.Net Class Library Documentation

WhereTerm Class

Represents one term in a WHERE clause

For a list of all members of this type, see WhereTerm Members.

System.Object
   Reeb.SqlOM.WhereTerm

public class WhereTerm : ICloneable

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

WhereTerm usually consists of one or more SqlExpression objects and an a conditional operator which applies to those expressions. WhereTerm has no public constructor. Use one of the supplied static methods to create a term.

Use CreateCompare to create a comparison term. A comparison term can apply one of CompareOperator operators on the supplied expressions. Use CreateIn to create a term which checks wheather an expression exists in a list of supplied values. Use CreateBetween to create a term which checks wheather an expression value is between a supplied lower and upper bounds.

Requirements

Namespace: Reeb.SqlOM

Assembly: Reeb.SqlOM (in Reeb.SqlOM.dll)

See Also

WhereTerm Members | Reeb.SqlOM Namespace