RavenDB.Embedded 7.1.2

Prefix Reserved
dotnet add package RavenDB.Embedded --version 7.1.2
                    
NuGet\Install-Package RavenDB.Embedded -Version 7.1.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RavenDB.Embedded" Version="7.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RavenDB.Embedded" Version="7.1.2" />
                    
Directory.Packages.props
<PackageReference Include="RavenDB.Embedded" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add RavenDB.Embedded --version 7.1.2
                    
#r "nuget: RavenDB.Embedded, 7.1.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package RavenDB.Embedded@7.1.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=RavenDB.Embedded&version=7.1.2
                    
Install as a Cake Addin
#tool nuget:?package=RavenDB.Embedded&version=7.1.2
                    
Install as a Cake Tool

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

Community

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

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 (9)

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
BitTacklr/Projac
A set of .NET projection libraries
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.
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.1.2 1,239 8/19/2025
7.1.2-rc-71011 142 8/11/2025
7.1.2-rc-71008 238 8/6/2025
7.1.1 2,492 7/22/2025
7.1.1-rc-71006 189 7/8/2025
7.1.0 4,310 7/1/2025
7.1.0-rc-71004 185 6/25/2025
7.1.0-rc-71003 188 6/18/2025
7.1.0-rc-71000 202 5/29/2025
7.0.6 140 8/19/2025
7.0.4 733 6/25/2025
7.0.3 1,251 6/10/2025
7.0.2 8,951 4/29/2025
7.0.1 13,932 3/27/2025
7.0.0 32,323 2/4/2025
6.2.9 401 8/19/2025
6.2.8 865 7/22/2025
6.2.7 282 6/25/2025
6.2.6 7,242 6/10/2025
6.2.5 7,350 4/29/2025
6.2.4 11,123 3/18/2025
6.2.3 50,778 1/21/2025
6.2.2 51,282 12/11/2024
6.2.1 43,107 10/30/2024
6.2.0 42,282 9/17/2024
6.0.110 387 3/18/2025
6.0.109 3,214 1/21/2025
6.0.108 519 12/11/2024
6.0.107 2,875 10/30/2024
6.0.106 12,754 9/17/2024
6.0.105 49,440 7/23/2024
6.0.104 21,590 6/17/2024
6.0.103 19,764 5/16/2024
6.0.102 24,398 4/29/2024
6.0.101 68,039 3/19/2024
6.0.100 76,233 2/12/2024
6.0.4 9,036 1/19/2024
6.0.3 78,153 1/16/2024
6.0.2 9,065 12/27/2023
6.0.1 16,860 11/14/2023
6.0.0 19,669 10/2/2023
5.4.211 571 8/19/2025
5.4.210 821 7/22/2025
5.4.209 1,032 6/10/2025
5.4.208 1,964 4/29/2025
5.4.207 3,946 3/18/2025
5.4.206 22,007 1/21/2025
5.4.205 7,910 12/11/2024
5.4.204 18,287 10/30/2024
5.4.203 19,660 10/2/2024
5.4.202 2,208 9/17/2024
5.4.201 47,310 7/23/2024
5.4.200 38,961 6/17/2024
5.4.119 5,528 5/16/2024
5.4.118 18,925 4/29/2024
5.4.117 28,284 3/19/2024
5.4.116 20,287 2/12/2024
5.4.115 10,664 1/18/2024
5.4.114 970 1/16/2024
5.4.113 17,801 12/27/2023
5.4.112 168,373 11/14/2023
5.4.111 23,496 10/3/2023
5.4.110 12,467 9/12/2023
5.4.109 39,700 8/1/2023
5.4.107 18,297 6/23/2023
5.4.106 2,788 6/22/2023
5.4.105 3,830 6/20/2023
5.4.104 76,615 5/12/2023
5.4.103 55,741 3/30/2023
5.4.102 8,826 3/27/2023
5.4.101 30,589 2/13/2023
5.4.100 47,530 1/9/2023
5.4.5 113,174 11/21/2022
5.4.4 36,470 10/12/2022
5.4.3 5,262 10/10/2022
5.4.2 38,108 9/1/2022
5.4.1 82,557 7/19/2022
5.4.0 20,222 7/18/2022
5.3.108 53,065 1/9/2023
5.3.107 8,544 11/21/2022
5.3.106 2,800 10/10/2022
5.3.105 4,454 9/1/2022
5.3.104 5,001 7/18/2022
5.3.103 56,333 6/7/2022
5.3.102 71,648 4/19/2022
5.3.101 32,592 3/15/2022
5.3.100 51,227 2/1/2022
5.3.2 15,042 1/7/2022
5.3.1 12,898 12/21/2021
5.3.0 7,808 11/29/2021
5.2.116 1,668 8/1/2023
5.2.115 1,572 6/23/2023
5.2.114 1,507 6/22/2023
5.2.113 1,608 6/20/2023
5.2.112 2,581 5/12/2023
5.2.111 2,783 3/30/2023
5.2.110 3,361 3/27/2023
5.2.109 2,647 2/13/2023
5.2.108 10,038 1/9/2023
5.2.107 2,317 11/21/2022
5.2.106 2,445 10/10/2022
5.2.105 2,540 9/1/2022
5.2.104 2,695 7/18/2022
5.2.103 4,019 6/7/2022
5.2.102 15,142 4/19/2022
5.2.101 22,429 3/15/2022
5.2.100 3,902 2/1/2022
5.2.6 3,001 1/7/2022
5.2.5 2,229 12/21/2021
5.2.4 17,327 11/15/2021
5.2.3 16,231 9/29/2021
5.2.2 22,956 8/16/2021
5.2.1 5,926 7/1/2021
5.2.0 6,815 6/21/2021
5.1.13 2,358 12/21/2021
5.1.12 2,407 11/15/2021
5.1.11 2,430 9/29/2021
5.1.10 2,493 8/16/2021
5.1.9 13,910 7/1/2021
5.1.8 6,957 5/26/2021
5.1.7 37,592 4/23/2021
5.1.6 4,630 4/13/2021
5.1.5 18,880 3/1/2021
5.1.4 16,693 2/1/2021
5.1.3 2,921 1/25/2021
5.1.2 12,104 12/11/2020
5.1.1 4,583 12/1/2020
5.1.0 4,205 11/18/2020
5.0.14 3,473 6/16/2021
5.0.13 2,592 5/24/2021
5.0.12 14,358 4/23/2021
5.0.11 6,066 4/13/2021
5.0.10 2,751 3/1/2021
5.0.9 2,777 2/1/2021
5.0.8 4,337 1/25/2021
5.0.7 5,619 12/11/2020
5.0.6 2,664 12/1/2020
5.0.5 21,658 11/16/2020
5.0.4 3,125 11/10/2020
5.0.3 9,456 9/28/2020
5.0.2 13,203 8/17/2020
5.0.1 4,075 8/5/2020
5.0.0 7,295 7/23/2020
4.2.124 1,473 6/19/2023
4.2.123 9,257 6/7/2022
4.2.122 4,064 4/19/2022
4.2.121 3,526 3/15/2022
4.2.120 5,409 2/1/2022
4.2.119 2,400 12/21/2021
4.2.118 3,779 11/15/2021
4.2.117 2,870 9/29/2021
4.2.116 2,842 8/16/2021
4.2.115 2,999 7/1/2021
4.2.114 5,174 5/24/2021
4.2.113 4,571 4/23/2021
4.2.112 2,688 4/13/2021
4.2.111 5,012 3/1/2021
4.2.110 4,543 2/1/2021
4.2.109 2,708 1/25/2021
4.2.108 5,763 11/16/2020
4.2.107 2,668 11/10/2020
4.2.106 8,378 9/28/2020
4.2.105 13,328 8/17/2020
4.2.104 5,786 7/22/2020
4.2.103 19,341 5/25/2020
4.2.102 8,480 4/15/2020
4.2.101 15,224 3/3/2020
4.2.100 2,826 3/2/2020
4.2.8 23,191 1/21/2020
4.2.6 11,031 12/9/2019
4.2.5 5,217 11/25/2019
4.2.5-patch-42026 2,007 11/13/2019
4.2.4 7,084 10/14/2019
4.2.4-patch-42020 1,999 9/27/2019
4.2.3 19,871 8/26/2019
4.2.2 18,117 7/15/2019
4.2.1 4,525 6/27/2019
4.2.0 6,465 5/21/2019
4.2.0-rc-42008 1,862 5/8/2019
4.2.0-rc-42007 1,814 4/25/2019
4.2.0-rc-42005 1,813 4/17/2019
4.2.0-rc-42003 1,822 4/12/2019
4.2.0-rc-42002 1,793 4/5/2019
4.2.0-rc-42001 1,829 3/22/2019
4.1.10 3,631 11/25/2019
4.1.9 2,706 10/14/2019
4.1.9-patch-41022 1,780 9/27/2019
4.1.8 5,686 8/26/2019
4.1.8-patch-41017 1,879 7/15/2019
4.1.7 2,779 6/27/2019
4.1.6 2,848 5/21/2019
4.1.5 19,264 4/15/2019
4.1.5-patch-41012 1,932 3/15/2019
4.1.4 13,803 2/13/2019
4.1.4-patch-41009 2,042 2/1/2019
4.1.4-patch-41008 3,522 1/7/2019
4.1.3 10,205 11/19/2018
4.1.3-patch-41006 2,537 11/5/2018
4.1.3-patch-41005 2,097 10/22/2018
4.1.2 8,642 10/15/2018
4.1.1 9,019 9/14/2018
4.1.0 6,193 8/31/2018
4.1.0-rc-41000 4,494 8/17/2018
3.5.10-patch-35323 169 8/8/2024
3.5.10-patch-35319 783 1/23/2023
3.5.10-patch-35312 809 4/12/2022
3.5.10-patch-35311 933 7/28/2021
3.5.10-patch-35310 860 7/15/2021
3.5.10-patch-35309 919 5/24/2021
3.5.10-patch-35308 1,001 5/16/2021
3.5.10-patch-35307 939 4/1/2021
3.5.10-patch-35305 1,053 1/13/2021
3.5.10-patch-35304 1,052 12/16/2020
3.5.10-patch-35303 1,039 12/3/2020
3.5.10-patch-35302 1,054 9/21/2020
3.5.10-patch-35301 1,060 8/27/2020
3.5.10-patch-35300 1,157 7/16/2020
3.5.10-patch-35296 1,094 6/19/2020
3.5.10-patch-35295 1,467 5/28/2020
3.5.10-patch-35294 1,141 5/6/2020
3.5.10-patch-35290 1,184 3/5/2020
3.5.10-patch-35289 3,058 11/7/2019
3.5.10-patch-35288 1,379 9/12/2019
3.5.10-patch-35286 1,322 8/13/2019
3.5.10-patch-35283 5,990 5/9/2019
3.5.10-patch-35282 1,532 4/23/2019
3.5.9 45,103 4/10/2019
3.5.9-patch-35280 1,394 3/19/2019
3.5.8 15,862 1/3/2019
3.5.8-patch-35278 1,484 12/10/2018
3.5.8-patch-35277 1,596 11/7/2018
3.5.8-patch-35276 1,540 11/2/2018
3.5.8-patch-35275 1,555 10/22/2018
3.5.7 25,499 9/6/2018
3.5.7-patch-35267 1,924 7/30/2018
3.5.7-patch-35266 2,146 5/31/2018
3.5.7-patch-35265 2,117 5/25/2018
3.5.7-patch-35264 2,075 5/25/2018
3.5.7-patch-35263 2,139 5/17/2018
3.5.6-patch-35261 2,251 4/15/2018
3.5.6-patch-35260 2,101 3/29/2018
3.5.6-patch-35259 6,563 3/27/2018
3.5.6-patch-35258 2,109 3/27/2018
3.5.6-patch-35257 2,176 3/7/2018
3.5.6-patch-35256 2,084 3/6/2018
3.5.6-patch-35253 2,053 2/28/2018
3.5.6-patch-35252 2,177 2/13/2018
3.5.6-patch-35251 2,144 2/7/2018
3.5.6-patch-35250 2,108 1/30/2018
3.5.6-patch-35249 2,063 1/25/2018
3.5.5 12,802 1/18/2018
3.5.5-patch-35246 2,991 1/10/2018
3.5.5-patch-35245 2,122 1/3/2018
3.5.5-patch-35244 1,936 12/12/2017
3.5.5-patch-35243 2,174 12/6/2017
3.5.5-patch-35241 1,882 11/24/2017
3.5.5-patch-35239 1,937 11/22/2017
3.5.5-patch-35237 1,878 11/16/2017
3.5.5-patch-35235 1,883 11/10/2017
3.5.5-patch-35232 1,904 11/8/2017
3.5.5-patch-35231 1,953 10/26/2017
3.5.5-patch-35223 2,048 10/10/2017
3.5.5-patch-35222 1,913 10/3/2017
3.5.5-patch-35221 1,903 9/25/2017
3.5.5-patch-35220 6,313 9/7/2017
3.5.5-patch-35219 1,931 9/4/2017
3.5.5-patch-35218 2,027 8/29/2017
3.5.5-patch-35216 2,666 7/24/2017
3.5.4 64,532 7/21/2017
3.5.4-patch-35202 2,056 5/5/2017
3.5.4-patch-35199 2,039 4/28/2017
3.5.4-patch-35196 1,985 4/25/2017
3.5.4-patch-35194 2,016 4/4/2017
3.5.3 29,709 3/8/2017
3.0.30187 2,534 5/19/2021
3.0.30183 8,501 4/1/2019
3.0.30182 13,013 4/27/2018
3.0.30181-Hotfix 1,934 4/17/2018
3.0.30180-Hotfix 1,992 3/29/2018
3.0.30179 8,954 7/21/2017
3.0.30175-Hotfix 1,873 5/11/2017
3.0.30172-Hotfix 2,127 3/30/2017
3.0.30171 3,203 3/8/2017
2.5.25043 10,573 1/13/2020
2.5.25042 3,475 10/3/2019
2.5.25041 14,149 5/16/2019
2.5.25040 3,825 10/17/2018
2.5.25039 5,818 10/2/2018
2.5.25038 3,472 9/17/2018
2.5.25037 3,535 9/13/2018
2.5.25034 3,407 9/6/2018
2.5.25033 3,378 8/17/2018
2.5.25032 10,364 5/8/2018
2.5.25031 5,084 5/3/2018
2.0.2380 44,931 7/11/2013
1.0.992 5,964 12/9/2012