AccessQuery.AtLeastN 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic static AccessQueryAtLeastN AtLeastN(
int n,
params AccessQuery[] queries
)
Public Shared Function AtLeastN (
n As Integer,
ParamArray queries As AccessQuery()
) As AccessQueryAtLeastN
public:
static AccessQueryAtLeastN^ AtLeastN(
int n,
... array<AccessQuery^>^ queries
)
static member AtLeastN :
n : int *
queries : AccessQuery[] -> AccessQueryAtLeastN
Parameters
- n
- Type: System.Int32
The number of the given queries that must be satisfied for the returned query to be satisfied. - queries
- Type:AGI.Foundation.Access.AccessQuery[]
The queries, at least n of which must be satisfied.
Return Value
Type:
AccessQueryAtLeastNThe new query.
See Also