![]() |
VOOZH | about |
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" />Directory.Packages.props
<PackageReference Include="RavenDB.Embedded" />Project file
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.4Install as a Cake Addin
#tool nuget:?package=RavenDB.Embedded&version=7.2.4Install as a Cake Tool
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.
Check the runtime prerequisites in our docs and get the latest stable version from NuGet.
EmbeddedServer.Instance.StartServer();
using (var store = EmbeddedServer.Instance.GetDocumentStore("Embedded"))
{
using (var session = store.OpenSession())
{
// Your code here
}
}
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
}
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
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 is compatible. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
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 |
Showing the top 9 popular GitHub repositories that depend on RavenDB.Embedded:
| Repository | Stars |
|---|---|
|
SharpRepository/SharpRepository
C# Generic Repository for use with Entity Framework, RavenDB and more with built-in caching options.
|
|
|
TcOpenGroup/TcOpen
Application framework for industrial automation built on top of TwinCAT3 and .NET.
|
|
|
dnauck/License.Manager
A web based license manager for Portable.Licensing developed using AngularJS and ServiceStack. Portable.Licensing is a cross platform software licensing framework which allows you to implement licensing into your application or library. It provides you all tools to create and validate licenses for your software.
|
|
|
sachabarber/SachaBarber.CQRS.Demo
Small CQRS demo
|
|
|
RWS/Sdl-Community
This is the place where we develop and maintain most of plugins for Trados Studio. If you want to help us or just looking for some examples this is the perfect place.
|
|
|
BitTacklr/Projac
A set of .NET projection libraries
|
|
|
RemiBou/Toss.Blazor
Experimental project using AspNetCore Blazor
|
|
|
bizanc/Bizanc.io.Core
Bizanc Blockchain
|
|
|
scriptcs/scriptcs-samples
Sample usages of scriptcs
|
| Version | Downloads | Last Updated |
|---|---|---|
| 7.2.4 | 362 | 6/16/2026 |
| 7.2.3 | 980 | 6/9/2026 |
| 7.2.3-rc-72011 | 153 | 6/2/2026 |
| 7.2.3-rc-72010 | 433 | 5/27/2026 |
| 7.2.2 | 8,688 | 4/28/2026 |
| 7.2.2-rc-72006 | 1,112 | 4/15/2026 |
| 7.2.1 | 8,830 | 3/17/2026 |
| 7.2.1-rc-72004 | 206 | 3/4/2026 |
| 7.1.10 | 108 | 6/16/2026 |
| 7.1.9 | 176 | 6/9/2026 |
| 7.1.8 | 406 | 4/28/2026 |
| 7.1.7 | 559 | 3/17/2026 |
| 6.2.17 | 167 | 6/16/2026 |
| 6.2.16 | 524 | 6/9/2026 |
| 6.2.16-rc-62090 | 132 | 6/2/2026 |
| 6.2.16-rc-62089 | 146 | 5/27/2026 |
| 6.2.15 | 5,910 | 4/28/2026 |
| 6.2.15-rc-62085 | 159 | 4/15/2026 |
| 6.2.14 | 3,015 | 3/17/2026 |
| 6.2.14-rc-62077 | 159 | 3/4/2026 |