Overload | Description |
---|---|
And() | To the current query condition, adds the empty condition, using the AND logical operation. |
And(String) | To the current query condition, adds a predicate for the column with the specified alias, using the AND logical operation. |
And(String,String) | To the current query condition, adds a predicate for the column with the specified alias from the specified source, using the AND logical operation. |
And(Select) | To the current query condition, adds the passed-in selection subquery as the predicate, using the AND logical operation. |
And(Query) | To the current query condition, adds the passed-in query as the predicate, using the AND logical operation. |
And(QueryParameter) | To the current query condition, adds the predicate for the passed-in query parameter, using the AND logical operation. |
And(QueryColumnExpression) | To the current query condition, adds the passed-in expression as the predicate. |
And(IQueryColumnExpressionConvertible) | To the current query condition, adds the passed-in expression as the predicate, using the AND logical operation. |
And(QueryCondition) | To the current query condition, adds the passed-in query condition as the predicate, using the AND logical operation. |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2