# RavenDB

Install the nuget package

```powershell
Install-Package Toggly.FeatureManagement.Storage.RavenDB
```

Add the following in your `startup.cs`

```csharp
using Toggly.FeatureManagement.Storage.RavenDB.Configuration;
```

```csharp
services.AddTogglyRavenDbSnapshotProvider();
```

{% hint style="info" %}
The RavenDB Snapshot provider expects an instance of IDocumentStore injected via dependency injection.
{% endhint %}
