Click or drag to resize

AccessQueryAtLeastN Method

Creates a query that is satisfied whenever at least N of the specified sub-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 AccessQueryAtLeastN AtLeastN(
	int n,
	params AccessQuery[] queries
)

Parameters

n
Type: SystemInt32
The number of the given queries that must be satisfied for the returned query to be satisfied.
queries
Type: AGI.Foundation.AccessAccessQuery
The queries, at least n of which must be satisfied.

Return Value

Type: AccessQueryAtLeastN
The new query.
See Also