Description
RavenDB is an open-source NoSQL database software designed to help businesses streamline multi-document ACID transactions and facilitate extract, transform, and load (ETL) operations.Examples
Dependency:
dotnet add package Testcontainers.RavenDb --version 3.9.0
Usage:
var ravenDbContainer = new RavenDbBuilder()
.WithImage("ravendb/ravendb:5.4-ubuntu-latest")
.Build();
await ravenDbContainer.StartAsync();