RavenDB.Embedded
7.2.4
Prefix Reserved
See the version list below for details.
dotnet add package RavenDB.Embedded --version 7.2.4
NuGet\Install-Package RavenDB.Embedded -Version 7.2.4
<PackageReference Include="RavenDB.Embedded" Version="7.2.4" />
<PackageVersion Include="RavenDB.Embedded" Version="7.2.4" />
<PackageReference Include="RavenDB.Embedded" />
paket add RavenDB.Embedded --version 7.2.4
#r "nuget: RavenDB.Embedded, 7.2.4"
#:package RavenDB.Embedded@7.2.4
#addin nuget:?package=RavenDB.Embedded&version=7.2.4
#tool nuget:?package=RavenDB.Embedded&version=7.2.4
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.2/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.2.4)
-
.NETStandard 2.0
- RavenDB.Client (>= 7.2.4)
- 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.5-rc-72028 | 53 | 7/17/2026 |
| 7.2.5-rc-72026 | 56 | 7/17/2026 |
| 7.2.5-rc-72025 | 104 | 7/15/2026 |
| 7.2.5-rc-72023 | 366 | 7/7/2026 |
| 7.2.4 | 6,329 | 6/16/2026 |
| 7.2.3 | 2,025 | 6/9/2026 |
| 7.2.3-rc-72011 | 165 | 6/2/2026 |
| 7.2.3-rc-72010 | 732 | 5/27/2026 |
| 7.2.2 | 11,633 | 4/28/2026 |
| 7.2.2-rc-72006 | 1,123 | 4/15/2026 |
| 7.1.10 | 363 | 6/16/2026 |
| 7.1.9 | 241 | 6/9/2026 |
| 7.1.8 | 466 | 4/28/2026 |
| 6.2.18-rc-62096 | 146 | 7/7/2026 |
| 6.2.18-rc-62095 | 144 | 7/6/2026 |
| 6.2.17 | 48,765 | 6/16/2026 |
| 6.2.16 | 3,128 | 6/9/2026 |
| 6.2.16-rc-62090 | 147 | 6/2/2026 |
| 6.2.16-rc-62089 | 164 | 5/27/2026 |
| 6.2.15 | 9,871 | 4/28/2026 |