Click or drag to resize

AccessQuery.BitwiseOr Operator

Combines two queries using a logical OR operation. The resulting query will only be satisfied when either 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 AccessQueryOr 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: AccessQueryOr
A new query which is a logical OR of the first and second queries.
See Also