Click or drag to resize

AccessQuery.BitwiseAnd Operator

Combines two queries using a logical AND operation. The resulting query will only be satisfied when both of the input queries are satisfied.

Namespace:  AGI.Foundation.Access
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public static AccessQueryAnd operator &(
	AccessQuery first,
	AccessQuery second
)

Parameters

first
Type: AGI.Foundation.Access.AccessQuery
The first query.
second
Type: AGI.Foundation.Access.AccessQuery
The second query.

Return Value

Type: AccessQueryAnd
A new query which is a logical AND of the first and second queries.
See Also