AccessQueryExactlyN Method |
Creates a query that is satisfied whenever exactly N of the specified sub-queries are satisfied.
Namespace:
AGI.Foundation.Access
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static AccessQueryExactlyN ExactlyN(
int n,
params AccessQuery[] queries
)
Public Shared Function ExactlyN (
n As Integer,
ParamArray queries As AccessQuery()
) As AccessQueryExactlyN
public:
static AccessQueryExactlyN^ ExactlyN(
int n,
... array<AccessQuery^>^ queries
)
static member ExactlyN :
n : int *
queries : AccessQuery[] -> AccessQueryExactlyN
Parameters
- n
- Type: SystemInt32
The number of the given queries that can be satisfied for the returned query to be satisfied. - queries
- Type: AGI.Foundation.AccessAccessQuery
The queries, exactly n of which must be satisfied.
Return Value
Type:
AccessQueryExactlyNThe new query.
See Also