AccessQuery.AtMostN Method |
Creates a query that is satisfied whenever no more than N of the specified sub-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)
Syntaxpublic static AccessQueryAtMostN AtMostN(
int n,
params AccessQuery[] queries
)
Public Shared Function AtMostN (
n As Integer,
ParamArray queries As AccessQuery()
) As AccessQueryAtMostN
public:
static AccessQueryAtMostN^ AtMostN(
int n,
... array<AccessQuery^>^ queries
)
static member AtMostN :
n : int *
queries : AccessQuery[] -> AccessQueryAtMostN
Parameters
- n
- Type: System.Int32
The maximum number of the given queries that can be satisfied for the returned query to be satisfied. - queries
- Type:AGI.Foundation.Access.AccessQuery[]
The queries, at most n of which can be satisfied.
Return Value
Type:
AccessQueryAtMostNThe new query.
See Also