RavenDB

Install the nuget package

Install-Package Toggly.FeatureManagement.Storage.RavenDB

Add the following in your startup.cs

using Toggly.FeatureManagement.Storage.RavenDB.Configuration;
services.AddTogglyRavenDbSnapshotProvider();

The RavenDB Snapshot provider expects an instance of IDocumentStore injected via dependency injection.

Last updated