RavenDB.Embedded
7.1.2-rc-71008
Prefix Reserved
See the version list below for details.
dotnet add package RavenDB.Embedded --version 7.1.2-rc-71008
NuGet\Install-Package RavenDB.Embedded -Version 7.1.2-rc-71008
<PackageReference Include="RavenDB.Embedded" Version="7.1.2-rc-71008" />
<PackageVersion Include="RavenDB.Embedded" Version="7.1.2-rc-71008" />
<PackageReference Include="RavenDB.Embedded" />
paket add RavenDB.Embedded --version 7.1.2-rc-71008
#r "nuget: RavenDB.Embedded, 7.1.2-rc-71008"
#:package RavenDB.Embedded@7.1.2-rc-71008
#addin nuget:?package=RavenDB.Embedded&version=7.1.2-rc-71008&prerelease
#tool nuget:?package=RavenDB.Embedded&version=7.1.2-rc-71008&prerelease
RavenDB .NET Embedded Server
You're looking at RavenDB .NET Embedded Server NuGet release.
It lets you to spin-up RavenDB server locally in no-time using friendly API.
RavenDB is a NoSQL database that fuses extreme performance with ease-of-use, offering above the roof developer experience.
Learn more at https://ravendb.net or visit our GitHub repository.
Installation
Check the runtime prerequisites in our docs and get the latest stable version from NuGet.
Learning resources
- Embedded Server Guide - https://ravendb.net/articles/building-a-beer-vending-machine-program-with-ravendb-embedded-server 🛣️
- Documentation - https://ravendb.net/docs/article-page/server/embedded 🎒
- Code Samples - https://demo.ravendb.net/ 🧑💻
Community
- RavenDB's Discord - https://discord.gg/ravendb 🍻
- Articles & guides - https://ravendb.net/articles 📰
- YouTube - https://www.youtube.com/@ravendb_net 🍿
- Blog - https://ayende.com/blog/ 🧑💻
Getting started
Initialize
EmbeddedServer.Instance.StartServer();
using (var store = EmbeddedServer.Instance.GetDocumentStore("Embedded"))
{
using (var session = store.OpenSession())
{
// Your code here
}
}
Store documents
using (IDocumentSession session = store.OpenSession()) // Open a session for a default 'Database'
{
Category category = new Category
{
Name = "Database Category"
};
session.Store(category); // Assign an 'Id' and collection (Categories)
// and start tracking an entity
Product product = new Product
{
Name = "RavenDB Database",
Category = category.Id,
UnitsInStock = 10
};
session.Store(product); // Assign an 'Id' and collection (Products)
// and start tracking an entity
session.SaveChanges(); // Send to the Server
// one request processed in one transaction
}
Query
using (IDocumentSession session = store.OpenSession()) // Open a session for a default 'Database'
{
List<string> productNames = session
.Query<Product>() // Query for Products
.Where(x => x.UnitsInStock > 5) // Filter
.Skip(0).Take(10) // Page
.Select(x => x.Name) // Project
.ToList(); // Materialize query
}
Contributing
- Submit an issue - https://github.com/ravendb/ravendb/issues
- GitHub Discussions - https://github.com/ravendb/ravendb/discussions
- Contributing rules - https://github.com/ravendb/ravendb/blob/v7.1/CONTRIBUTING.md
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- RavenDB.Client (>= 7.1.2-rc-71008)
-
.NETStandard 2.0
- RavenDB.Client (>= 7.1.2-rc-71008)
- System.Runtime.Loader (>= 4.3.0)
NuGet packages (20)
Showing the top 5 NuGet packages that depend on RavenDB.Embedded:
| Package | Downloads |
|---|---|
|
RavenDB.TestDriver
Package Description |
|
|
Particular.PlatformSample.ServiceControl
Particular ServiceControl binaries for use by Particular.PlatformSample. Not intended for use outside of Particular.PlatformSample. |
|
|
FubuMVC.RavenDb
Drop in persistence with RavenDb for FubuMVC / StructureMap applications |
|
|
BuildingBlocks.Store.RavenDB.TestHelpers.SpecFlow
Helpers for integration tests with RavenDB and SpecFlow |
|
|
BrickPile
BrickPile is a lightweight CMS built on RavenDB and ASP.NET MVC 5 |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 7.2.2-rc-72006 | 295 | 4/15/2026 |
| 7.2.1 | 4,986 | 3/17/2026 |
| 7.2.1-rc-72004 | 176 | 3/4/2026 |
| 7.2.0 | 6,715 | 2/2/2026 |
| 7.2.0-rc-72002 | 174 | 1/27/2026 |
| 7.2.0-rc-72001 | 164 | 1/26/2026 |
| 7.2.0-rc-72000 | 1,112 | 1/21/2026 |
| 7.1.7 | 469 | 3/17/2026 |
| 7.1.6 | 834 | 2/2/2026 |
| 7.1.6-rc-71029 | 148 | 1/21/2026 |
| 7.1.5 | 10,052 | 12/22/2025 |
| 7.1.5-rc-71026 | 365 | 12/18/2025 |
| 7.1.2-rc-71008 | 359 | 8/6/2025 |
| 7.0.9 | 265 | 12/22/2025 |
| 6.2.15-rc-62085 | 124 | 4/15/2026 |
| 6.2.14 | 1,854 | 3/17/2026 |
| 6.2.14-rc-62077 | 132 | 3/4/2026 |
| 6.2.13 | 19,904 | 2/2/2026 |
| 6.2.12 | 41,241 | 12/22/2025 |
| 5.4.214 | 234 | 2/23/2026 |