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.Doc.Collection()
Gets a reference to a child collection on a document.
using Nitric.Sdk;
using Nitric.Sdk.Resources;
var profiles = Nitric.Collection<Profile>("profiles").With(CollectionPermission.Reading);
var drakesProfile = profiles.Doc("Drake Mallard");
var drakesEnemies = drakesProfile.Collection("enemies");
Nitric.Run();
Parameters
- Name
name
- Required
- Required
- Type
- string
- Description
The name of the child collection to reference
Notes
Document collection relationships can be at most 1 deep.
using Nitric.Sdk;
using Nitric.Sdk.Resources;
var profiles = Nitric.Collection<Profile>("profiles").With(CollectionPermission.Reading);
profiles
.Doc("Drake Mallard")
.Collection("enemies")
.Doc("Steel Beak") // ✔️ We can go this deep
.Collection("enemies"); // ❌ But not this deep
Nitric.Run();