The C# .NET SDK currently only supports legacy versions of Nitric prior to v1. This version is maintained for compatibility with existing projects and not recommended for new projects. New projects should be started using a supported SDK (presented automatically using the `nitric new` command) orget in touch to request an update to the latest version.
.NET - Collection.Query.Limit()
Limit the number of results returned by a query.
using Nitric.Sdk;
using Nitric.Sdk.Resources;
var profiles = Nitric.Collection<Profile>("profiles").With(CollectionPermission.Reading);
var profileQuery = profiles.Query().Limit(10);
Nitric.Run();
Parameters
- Name
limit
- Required
- Required
- Type
- int
- Description
The limit to apply to the query.