Click or drag to resize

AccessQueryBitwiseOr 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: 24.1.418.0 (24.1.418.0)
Syntax
public static AccessQueryOr 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: AccessQueryOr
A new query which is a logical OR of the first and second queries.
See Also