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.Collection()
Get a query-only sub-collection reference, this can be used to query commonly named collections across documents.
using Nitric.Sdk;
using Nitric.Sdk.Resources;
var enemies = Nitric.Collection<Profile>("profiles").With(CollectionPermission.Reading).Collection("enemies");
Nitric.Run();
Parameters
- Name
name
- Required
- Required
- Type
- string
- Description
The name of the sub-collection to reference
Examples
Create a query for a sub collection
using Nitric.Sdk;
using Nitric.Sdk.Resources;
var enemies = Nitric.Collection<Profile>("profiles").With(CollectionPermission.Reading).Collection("enemies");
var enemiesQuery = enemies.Query();
Nitric.Run();