Query.Or - метод Смотри также Terrasoft.Core.DB - пространство имен > Query - класс : Or - метод C#
Glossary Item Box
Перегрузка | Описание |
---|---|
Or() | To the current query condition, adds the empty condition, using the OR logical operation. |
Or(String) | To the current query condition, adds a predicate for the column with the specified alias, using the OR logical operation. |
Or(String,String) | To the current query condition, adds a predicate for the column with the specified alias from the specified source, using the OR logical operation. |
Or(Select) | To the current query condition, adds the passed-in select subquery as the predicate, using the OR logical operation. |
Or(Query) | To the current query condition, adds the passed-in subquery as the predicate, using the OR logical operation. |
Or(QueryParameter) | To the current query condition, adds the predicate for the passed-in query parameter, using the OR logical operation. |
Or(QueryColumnExpression) | To the current query condition, adds the passed-in expression as the predicate, using the OR logical operation. |
Or(IQueryColumnExpressionConvertible) | To the current query condition, adds the passed-in expression as the predicate, using the OR logical operation. |
Or(QueryCondition) | To the current query condition, adds the passed-in query condition as the predicate, using the OR logical operation. |