IQueryWhereBuilder.Where Method
.NET Standard 2.x
Creates a WHERE clause, and adds a search condition to the WHERE clause.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Overloads
Method | Description |
---|---|
Where(string left, string right) | Creates a WHERE clause, and adds a search condition to the WHERE clause. Specifies SQL expressions on both the left and right of the operator. The operator is '='. |
Where(string left, SqlBinaryOperator sqlOperator, string right) | Creates a WHERE clause, and adds a search condition to the WHERE clause. Specifies SQL expressions on both the left and right of the operator. |
Where(string left, ISqlParameter parameter) | Creates a WHERE clause, and adds a search condition to the WHERE clause. Specifies a SQL expression on the left of the operator and a SQL parameter on the right of the operator. The operator is '='. |
Where(string left, SqlBinaryOperator sqlOperator, ISqlParameter parameter) | Creates a WHERE clause, and adds a search condition to the WHERE clause. Specifies a SQL expression on the left of the operator and a SQL parameter on the right of the operator. |
Where(string left, ISqlBuilder sqlBuilder) | Creates a WHERE clause, and adds a search condition to the WHERE clause. Specifies a SQL expression on the left of the operator and a SQL subquery on the right. The operator is '='. |
Where(string left, SqlBinaryOperator sqlOperator, ISqlBuilder sqlBuilder) | Creates a WHERE clause, and adds a search condition to the WHERE clause. Specifies a SQL expression on the left of the operator and a SQL subquery on the right. |
Where(ISqlWhereCondition condition) | Creates a WHERE clause, and adds a search condition to the WHERE clause by an ISqlWhereCondition object. |