RavenDB.Embedded 7.1.4

Prefix Reserved
dotnet add package RavenDB.Embedded --version 7.1.4
                    
NuGet\Install-Package RavenDB.Embedded -Version 7.1.4
                    
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.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RavenDB.Embedded" Version="7.1.4" />
                    
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.4
                    
#r "nuget: RavenDB.Embedded, 7.1.4"
                    
#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.4
                    
#: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.4
                    
Install as a Cake Addin
#tool nuget:?package=RavenDB.Embedded&version=7.1.4
                    
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 (1)

Showing the top 1 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.
Version Downloads Last Updated
7.1.4 682 11/12/2025
7.1.4-rc-71023 186 11/7/2025
7.1.4-rc-71022 276 10/29/2025
7.1.4-rc-71021 151 10/28/2025
7.1.4-rc-71020 228 10/27/2025
7.1.3 5,599 10/2/2025
7.1.3-rc-71017 220 10/2/2025
7.1.3-rc-71014 395 9/17/2025
7.1.2 8,035 8/19/2025
7.1.2-rc-71011 233 8/11/2025
7.1.2-rc-71008 319 8/6/2025
7.1.1 4,568 7/22/2025
7.1.1-rc-71006 242 7/8/2025
7.1.0 5,803 7/1/2025
7.1.0-rc-71004 233 6/25/2025
7.1.0-rc-71003 255 6/18/2025
7.1.0-rc-71000 268 5/29/2025
7.0.8 236 11/12/2025
7.0.7 231 10/2/2025
7.0.6 250 8/19/2025
7.0.4 861 6/25/2025
7.0.3 1,351 6/10/2025
7.0.2 12,336 4/29/2025
7.0.1 14,236 3/27/2025
7.0.0 33,129 2/4/2025
6.2.11 283 11/12/2025
6.2.10 2,377 10/2/2025
6.2.9 2,908 8/19/2025
6.2.8 1,491 7/22/2025
6.2.7 382 6/25/2025
6.2.6 19,591 6/10/2025
6.2.5 9,963 4/29/2025
6.2.4 11,292 3/18/2025
6.2.3 59,568 1/21/2025
6.2.2 58,357 12/11/2024
6.2.1 45,927 10/30/2024
6.2.0 43,917 9/17/2024
6.0.110 737 3/18/2025
6.0.109 3,449 1/21/2025
6.0.108 602 12/11/2024
6.0.107 3,004 10/30/2024
6.0.106 12,827 9/17/2024
6.0.105 50,857 7/23/2024
6.0.104 21,714 6/17/2024
6.0.103 19,964 5/16/2024
6.0.102 24,616 4/29/2024
6.0.101 72,948 3/19/2024
6.0.100 80,971 2/12/2024
6.0.4 10,368 1/19/2024
6.0.3 78,230 1/16/2024
6.0.2 9,693 12/27/2023
6.0.1 16,966 11/14/2023
6.0.0 21,868 10/2/2023
5.4.213 258 11/12/2025
5.4.212 618 10/2/2025
5.4.211 2,819 8/19/2025
5.4.210 1,019 7/22/2025
5.4.209 1,696 6/10/2025
5.4.208 3,584 4/29/2025
5.4.207 4,317 3/18/2025
5.4.206 23,421 1/21/2025
5.4.205 10,679 12/11/2024
5.4.204 19,486 10/30/2024
5.4.203 21,045 10/2/2024
5.4.202 2,298 9/17/2024
5.4.201 49,130 7/23/2024
5.4.200 39,915 6/17/2024
5.4.119 5,611 5/16/2024
5.4.118 19,390 4/29/2024
5.4.117 28,452 3/19/2024
5.4.116 20,395 2/12/2024
5.4.115 10,735 1/18/2024
5.4.114 1,048 1/16/2024
5.4.113 17,890 12/27/2023
5.4.112 201,694 11/14/2023
5.4.111 23,652 10/3/2023
5.4.110 12,538 9/12/2023
5.4.109 40,473 8/1/2023
5.4.107 18,388 6/23/2023
5.4.106 2,875 6/22/2023
5.4.105 3,908 6/20/2023
5.4.104 76,835 5/12/2023
5.4.103 55,934 3/30/2023
5.4.102 8,919 3/27/2023
5.4.101 30,799 2/13/2023
5.4.100 47,858 1/9/2023
5.4.5 113,558 11/21/2022
5.4.4 36,809 10/12/2022
5.4.3 5,393 10/10/2022
5.4.2 38,234 9/1/2022
5.4.1 83,097 7/19/2022
5.4.0 20,358 7/18/2022
5.3.108 53,232 1/9/2023
5.3.107 8,866 11/21/2022
5.3.106 2,889 10/10/2022
5.3.105 4,544 9/1/2022
5.3.104 5,091 7/18/2022
5.3.103 56,423 6/7/2022
5.3.102 71,843 4/19/2022
5.3.101 32,694 3/15/2022
5.3.100 51,519 2/1/2022
5.3.2 15,404 1/7/2022
5.3.1 12,989 12/21/2021
5.3.0 7,908 11/29/2021
5.2.116 1,739 8/1/2023
5.2.115 1,647 6/23/2023
5.2.114 1,596 6/22/2023
5.2.113 1,690 6/20/2023
5.2.112 2,676 5/12/2023
5.2.111 2,863 3/30/2023
5.2.110 3,443 3/27/2023
5.2.109 2,731 2/13/2023
5.2.108 10,581 1/9/2023
5.2.107 2,397 11/21/2022
5.2.106 2,537 10/10/2022
5.2.105 2,626 9/1/2022
5.2.104 2,785 7/18/2022
5.2.103 4,175 6/7/2022
5.2.102 15,228 4/19/2022
5.2.101 22,536 3/15/2022
5.2.100 3,987 2/1/2022
5.2.6 3,089 1/7/2022
5.2.5 2,358 12/21/2021
5.2.4 17,428 11/15/2021
5.2.3 16,337 9/29/2021
5.2.2 23,066 8/16/2021
5.2.1 6,021 7/1/2021
5.2.0 6,907 6/21/2021
5.1.13 2,458 12/21/2021
5.1.12 2,505 11/15/2021
5.1.11 2,504 9/29/2021
5.1.10 2,588 8/16/2021
5.1.9 13,997 7/1/2021
5.1.8 7,074 5/26/2021
5.1.7 37,706 4/23/2021
5.1.6 4,715 4/13/2021
5.1.5 19,037 3/1/2021
5.1.4 16,785 2/1/2021
5.1.3 3,013 1/25/2021
5.1.2 12,237 12/11/2020
5.1.1 4,659 12/1/2020
5.1.0 4,337 11/18/2020
5.0.14 3,573 6/16/2021
5.0.13 2,691 5/24/2021
5.0.12 14,452 4/23/2021
5.0.11 6,158 4/13/2021
5.0.10 2,846 3/1/2021
5.0.9 2,891 2/1/2021
5.0.8 4,451 1/25/2021
5.0.7 5,717 12/11/2020
5.0.6 2,766 12/1/2020
5.0.5 21,773 11/16/2020
5.0.4 3,233 11/10/2020
5.0.3 9,624 9/28/2020
5.0.2 13,317 8/17/2020
5.0.1 4,170 8/5/2020
5.0.0 7,386 7/23/2020
4.2.124 1,565 6/19/2023
4.2.123 9,500 6/7/2022
4.2.122 4,171 4/19/2022
4.2.121 3,622 3/15/2022
4.2.120 5,511 2/1/2022
4.2.119 2,490 12/21/2021
4.2.118 3,903 11/15/2021
4.2.117 2,963 9/29/2021
4.2.116 3,029 8/16/2021
4.2.115 3,094 7/1/2021
4.2.114 5,275 5/24/2021
4.2.113 4,666 4/23/2021
4.2.112 2,774 4/13/2021
4.2.111 5,119 3/1/2021
4.2.110 4,633 2/1/2021
4.2.109 2,797 1/25/2021
4.2.108 5,883 11/16/2020
4.2.107 2,768 11/10/2020
4.2.106 8,476 9/28/2020
4.2.105 13,443 8/17/2020
4.2.104 5,876 7/22/2020
4.2.103 19,439 5/25/2020
4.2.102 8,576 4/15/2020
4.2.101 15,326 3/3/2020
4.2.100 2,915 3/2/2020
4.2.8 23,450 1/21/2020
4.2.6 11,134 12/9/2019
4.2.5 5,332 11/25/2019
4.2.5-patch-42026 2,089 11/13/2019
4.2.4 7,183 10/14/2019
4.2.4-patch-42020 2,095 9/27/2019
4.2.3 19,962 8/26/2019
4.2.2 18,227 7/15/2019
4.2.1 4,634 6/27/2019
4.2.0 6,560 5/21/2019
4.2.0-rc-42008 1,972 5/8/2019
4.2.0-rc-42007 1,920 4/25/2019
4.2.0-rc-42005 1,912 4/17/2019
4.2.0-rc-42003 1,914 4/12/2019
4.2.0-rc-42002 1,883 4/5/2019
4.2.0-rc-42001 1,916 3/22/2019
4.1.10 3,724 11/25/2019
4.1.9 2,794 10/14/2019
4.1.9-patch-41022 1,882 9/27/2019
4.1.8 5,774 8/26/2019
4.1.8-patch-41017 1,959 7/15/2019
4.1.7 2,875 6/27/2019
4.1.6 2,966 5/21/2019
4.1.5 20,071 4/15/2019
4.1.5-patch-41012 2,029 3/15/2019
4.1.4 13,900 2/13/2019
4.1.4-patch-41009 2,149 2/1/2019
4.1.4-patch-41008 3,611 1/7/2019
4.1.3 10,292 11/19/2018
4.1.3-patch-41006 2,640 11/5/2018
4.1.3-patch-41005 2,187 10/22/2018
4.1.2 8,732 10/15/2018
4.1.1 9,139 9/14/2018
4.1.0 6,294 8/31/2018
4.1.0-rc-41000 4,611 8/17/2018
3.5.10-patch-35323 271 8/8/2024
3.5.10-patch-35319 893 1/23/2023
3.5.10-patch-35312 937 4/12/2022
3.5.10-patch-35311 1,049 7/28/2021
3.5.10-patch-35310 975 7/15/2021
3.5.10-patch-35309 1,052 5/24/2021
3.5.10-patch-35308 1,127 5/16/2021
3.5.10-patch-35307 1,057 4/1/2021
3.5.10-patch-35305 1,174 1/13/2021
3.5.10-patch-35304 1,167 12/16/2020
3.5.10-patch-35303 1,163 12/3/2020
3.5.10-patch-35302 1,170 9/21/2020
3.5.10-patch-35301 1,180 8/27/2020
3.5.10-patch-35300 1,294 7/16/2020
3.5.10-patch-35296 1,217 6/19/2020
3.5.10-patch-35295 1,613 5/28/2020
3.5.10-patch-35294 1,274 5/6/2020
3.5.10-patch-35290 1,326 3/5/2020
3.5.10-patch-35289 3,175 11/7/2019
3.5.10-patch-35288 1,501 9/12/2019
3.5.10-patch-35286 1,423 8/13/2019
3.5.10-patch-35283 6,334 5/9/2019
3.5.10-patch-35282 1,646 4/23/2019
3.5.9 46,544 4/10/2019
3.5.9-patch-35280 1,516 3/19/2019
3.5.8 15,982 1/3/2019
3.5.8-patch-35278 1,597 12/10/2018
3.5.8-patch-35277 1,727 11/7/2018
3.5.8-patch-35276 1,658 11/2/2018
3.5.8-patch-35275 1,684 10/22/2018
3.5.7 25,623 9/6/2018
3.5.7-patch-35267 2,131 7/30/2018
3.5.7-patch-35266 2,421 5/31/2018
3.5.7-patch-35265 2,390 5/25/2018
3.5.7-patch-35264 2,347 5/25/2018
3.5.7-patch-35263 2,436 5/17/2018
3.5.6-patch-35261 2,534 4/15/2018
3.5.6-patch-35260 2,370 3/29/2018
3.5.6-patch-35259 6,832 3/27/2018
3.5.6-patch-35258 2,382 3/27/2018
3.5.6-patch-35257 2,448 3/7/2018
3.5.6-patch-35256 2,361 3/6/2018
3.5.6-patch-35253 2,331 2/28/2018
3.5.6-patch-35252 2,447 2/13/2018
3.5.6-patch-35251 2,429 2/7/2018
3.5.6-patch-35250 2,385 1/30/2018
3.5.6-patch-35249 2,348 1/25/2018
3.5.5 13,015 1/18/2018
3.5.5-patch-35246 3,188 1/10/2018
3.5.5-patch-35245 2,389 1/3/2018
3.5.5-patch-35244 2,122 12/12/2017
3.5.5-patch-35243 2,449 12/6/2017
3.5.5-patch-35241 2,073 11/24/2017
3.5.5-patch-35239 2,117 11/22/2017
3.5.5-patch-35237 2,086 11/16/2017
3.5.5-patch-35235 2,074 11/10/2017
3.5.5-patch-35232 2,112 11/8/2017
3.5.5-patch-35231 2,159 10/26/2017
3.5.5-patch-35223 2,250 10/10/2017
3.5.5-patch-35222 2,126 10/3/2017
3.5.5-patch-35221 2,102 9/25/2017
3.5.5-patch-35220 6,517 9/7/2017
3.5.5-patch-35219 2,118 9/4/2017
3.5.5-patch-35218 2,214 8/29/2017
3.5.5-patch-35216 2,869 7/24/2017
3.5.4 64,954 7/21/2017
3.5.4-patch-35202 2,251 5/5/2017
3.5.4-patch-35199 2,241 4/28/2017
3.5.4-patch-35196 2,174 4/25/2017
3.5.4-patch-35194 2,202 4/4/2017
3.5.3 30,482 3/8/2017
3.0.30187 2,724 5/19/2021
3.0.30183 8,629 4/1/2019
3.0.30182 13,456 4/27/2018
3.0.30181-Hotfix 2,108 4/17/2018
3.0.30180-Hotfix 2,173 3/29/2018
3.0.30179 9,143 7/21/2017
3.0.30175-Hotfix 2,009 5/11/2017
3.0.30172-Hotfix 2,251 3/30/2017
3.0.30171 3,408 3/8/2017
2.5.25043 11,353 1/13/2020
2.5.25042 3,551 10/3/2019
2.5.25041 14,394 5/16/2019
2.5.25040 3,913 10/17/2018
2.5.25039 5,912 10/2/2018
2.5.25038 3,557 9/17/2018
2.5.25037 3,612 9/13/2018
2.5.25034 3,499 9/6/2018
2.5.25033 3,461 8/17/2018
2.5.25032 11,330 5/8/2018
2.5.25031 5,228 5/3/2018
2.0.2380 46,417 7/11/2013
1.0.992 6,075 12/9/2012