Click or drag to resize

AccessQueryBitwiseAnd 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: 24.1.418.0 (24.1.418.0)
Syntax
public static AccessQueryAnd operator &(
	AccessQuery first,
	AccessQuery second
)

Parameters

first
Type: AGI.Foundation.AccessAccessQuery
The first query.
second
Type: AGI.Foundation.AccessAccessQuery
The second query.

Return Value

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