RavenDB.Embedded
7.0.4
Prefix Reserved
See the version list below for details.
dotnet add package RavenDB.Embedded --version 7.0.4
NuGet\Install-Package RavenDB.Embedded -Version 7.0.4
<PackageReference Include="RavenDB.Embedded" Version="7.0.4" />
<PackageVersion Include="RavenDB.Embedded" Version="7.0.4" />
<PackageReference Include="RavenDB.Embedded" />
paket add RavenDB.Embedded --version 7.0.4
#r "nuget: RavenDB.Embedded, 7.0.4"
#addin nuget:?package=RavenDB.Embedded&version=7.0.4
#tool nuget:?package=RavenDB.Embedded&version=7.0.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.0/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.0.4)
-
.NETStandard 2.0
- RavenDB.Client (>= 7.0.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 (4)
Showing the top 4 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
|
Version | Downloads | Last Updated |
---|---|---|
7.1.0-rc-71004 | 79 | 6/25/2025 |
7.1.0-rc-71003 | 130 | 6/18/2025 |
7.1.0-rc-71000 | 174 | 5/29/2025 |
7.0.4 | 82 | 6/25/2025 |
7.0.3 | 903 | 6/10/2025 |
7.0.2 | 6,035 | 4/29/2025 |
7.0.1 | 13,705 | 3/27/2025 |
7.0.0 | 31,191 | 2/4/2025 |
6.2.7 | 78 | 6/25/2025 |
6.2.6 | 1,577 | 6/10/2025 |
6.2.5 | 5,020 | 4/29/2025 |
6.2.4 | 10,917 | 3/18/2025 |
6.2.3 | 44,113 | 1/21/2025 |
6.2.2 | 46,640 | 12/11/2024 |
6.2.1 | 41,773 | 10/30/2024 |
6.2.0 | 40,921 | 9/17/2024 |
6.0.110 | 317 | 3/18/2025 |
6.0.109 | 3,176 | 1/21/2025 |
6.0.108 | 503 | 12/11/2024 |
6.0.107 | 2,849 | 10/30/2024 |
6.0.106 | 12,731 | 9/17/2024 |
6.0.105 | 47,889 | 7/23/2024 |
6.0.104 | 21,376 | 6/17/2024 |
6.0.103 | 19,614 | 5/16/2024 |
6.0.102 | 24,297 | 4/29/2024 |
6.0.101 | 65,533 | 3/19/2024 |
6.0.100 | 73,409 | 2/12/2024 |
6.0.4 | 8,130 | 1/19/2024 |
6.0.3 | 78,120 | 1/16/2024 |
6.0.2 | 8,045 | 12/27/2023 |
6.0.1 | 16,794 | 11/14/2023 |
6.0.0 | 14,199 | 10/2/2023 |
5.4.209 | 513 | 6/10/2025 |
5.4.208 | 1,272 | 4/29/2025 |
5.4.207 | 3,733 | 3/18/2025 |
5.4.206 | 19,277 | 1/21/2025 |
5.4.205 | 5,956 | 12/11/2024 |
5.4.204 | 17,522 | 10/30/2024 |
5.4.203 | 18,595 | 10/2/2024 |
5.4.202 | 2,184 | 9/17/2024 |
5.4.201 | 45,999 | 7/23/2024 |
5.4.200 | 36,760 | 6/17/2024 |
5.4.119 | 5,510 | 5/16/2024 |
5.4.118 | 18,546 | 4/29/2024 |
5.4.117 | 28,217 | 3/19/2024 |
5.4.116 | 20,257 | 2/12/2024 |
5.4.115 | 10,640 | 1/18/2024 |
5.4.114 | 952 | 1/16/2024 |
5.4.113 | 17,783 | 12/27/2023 |
5.4.112 | 146,540 | 11/14/2023 |
5.4.111 | 23,415 | 10/3/2023 |
5.4.110 | 12,446 | 9/12/2023 |
5.4.109 | 39,327 | 8/1/2023 |
5.4.107 | 18,263 | 6/23/2023 |
5.4.106 | 2,757 | 6/22/2023 |
5.4.105 | 3,792 | 6/20/2023 |
5.4.104 | 76,490 | 5/12/2023 |
5.4.103 | 55,671 | 3/30/2023 |
5.4.102 | 8,788 | 3/27/2023 |
5.4.101 | 30,456 | 2/13/2023 |
5.4.100 | 47,299 | 1/9/2023 |
5.4.5 | 112,779 | 11/21/2022 |
5.4.4 | 36,230 | 10/12/2022 |
5.4.3 | 5,209 | 10/10/2022 |
5.4.2 | 38,023 | 9/1/2022 |
5.4.1 | 82,208 | 7/19/2022 |
5.4.0 | 20,072 | 7/18/2022 |
5.3.108 | 52,974 | 1/9/2023 |
5.3.107 | 8,340 | 11/21/2022 |
5.3.106 | 2,755 | 10/10/2022 |
5.3.105 | 4,419 | 9/1/2022 |
5.3.104 | 4,965 | 7/18/2022 |
5.3.103 | 56,290 | 6/7/2022 |
5.3.102 | 71,565 | 4/19/2022 |
5.3.101 | 32,532 | 3/15/2022 |
5.3.100 | 51,149 | 2/1/2022 |
5.3.2 | 14,826 | 1/7/2022 |
5.3.1 | 12,855 | 12/21/2021 |
5.3.0 | 7,772 | 11/29/2021 |
5.2.116 | 1,641 | 8/1/2023 |
5.2.115 | 1,540 | 6/23/2023 |
5.2.114 | 1,473 | 6/22/2023 |
5.2.113 | 1,579 | 6/20/2023 |
5.2.112 | 2,534 | 5/12/2023 |
5.2.111 | 2,740 | 3/30/2023 |
5.2.110 | 3,330 | 3/27/2023 |
5.2.109 | 2,606 | 2/13/2023 |
5.2.108 | 9,532 | 1/9/2023 |
5.2.107 | 2,276 | 11/21/2022 |
5.2.106 | 2,405 | 10/10/2022 |
5.2.105 | 2,505 | 9/1/2022 |
5.2.104 | 2,666 | 7/18/2022 |
5.2.103 | 3,968 | 6/7/2022 |
5.2.102 | 15,108 | 4/19/2022 |
5.2.101 | 22,387 | 3/15/2022 |
5.2.100 | 3,863 | 2/1/2022 |
5.2.6 | 2,969 | 1/7/2022 |
5.2.5 | 2,190 | 12/21/2021 |
5.2.4 | 17,292 | 11/15/2021 |
5.2.3 | 16,184 | 9/29/2021 |
5.2.2 | 22,745 | 8/16/2021 |
5.2.1 | 5,889 | 7/1/2021 |
5.2.0 | 6,775 | 6/21/2021 |
5.1.13 | 2,325 | 12/21/2021 |
5.1.12 | 2,369 | 11/15/2021 |
5.1.11 | 2,402 | 9/29/2021 |
5.1.10 | 2,458 | 8/16/2021 |
5.1.9 | 13,875 | 7/1/2021 |
5.1.8 | 6,898 | 5/26/2021 |
5.1.7 | 37,555 | 4/23/2021 |
5.1.6 | 4,597 | 4/13/2021 |
5.1.5 | 18,718 | 3/1/2021 |
5.1.4 | 16,640 | 2/1/2021 |
5.1.3 | 2,886 | 1/25/2021 |
5.1.2 | 11,988 | 12/11/2020 |
5.1.1 | 4,547 | 12/1/2020 |
5.1.0 | 4,166 | 11/18/2020 |
5.0.14 | 3,433 | 6/16/2021 |
5.0.13 | 2,555 | 5/24/2021 |
5.0.12 | 14,318 | 4/23/2021 |
5.0.11 | 6,033 | 4/13/2021 |
5.0.10 | 2,719 | 3/1/2021 |
5.0.9 | 2,733 | 2/1/2021 |
5.0.8 | 4,302 | 1/25/2021 |
5.0.7 | 5,578 | 12/11/2020 |
5.0.6 | 2,622 | 12/1/2020 |
5.0.5 | 21,618 | 11/16/2020 |
5.0.4 | 3,084 | 11/10/2020 |
5.0.3 | 9,374 | 9/28/2020 |
5.0.2 | 13,117 | 8/17/2020 |
5.0.1 | 4,033 | 8/5/2020 |
5.0.0 | 7,245 | 7/23/2020 |
4.2.124 | 1,441 | 6/19/2023 |
4.2.123 | 9,150 | 6/7/2022 |
4.2.122 | 4,025 | 4/19/2022 |
4.2.121 | 3,494 | 3/15/2022 |
4.2.120 | 5,369 | 2/1/2022 |
4.2.119 | 2,344 | 12/21/2021 |
4.2.118 | 3,746 | 11/15/2021 |
4.2.117 | 2,837 | 9/29/2021 |
4.2.116 | 2,679 | 8/16/2021 |
4.2.115 | 2,963 | 7/1/2021 |
4.2.114 | 5,141 | 5/24/2021 |
4.2.113 | 4,535 | 4/23/2021 |
4.2.112 | 2,650 | 4/13/2021 |
4.2.111 | 4,979 | 3/1/2021 |
4.2.110 | 4,507 | 2/1/2021 |
4.2.109 | 2,670 | 1/25/2021 |
4.2.108 | 5,728 | 11/16/2020 |
4.2.107 | 2,631 | 11/10/2020 |
4.2.106 | 8,336 | 9/28/2020 |
4.2.105 | 13,285 | 8/17/2020 |
4.2.104 | 5,745 | 7/22/2020 |
4.2.103 | 19,287 | 5/25/2020 |
4.2.102 | 8,439 | 4/15/2020 |
4.2.101 | 15,164 | 3/3/2020 |
4.2.100 | 2,786 | 3/2/2020 |
4.2.8 | 22,907 | 1/21/2020 |
4.2.6 | 10,988 | 12/9/2019 |
4.2.5 | 5,176 | 11/25/2019 |
4.2.5-patch-42026 | 1,968 | 11/13/2019 |
4.2.4 | 7,045 | 10/14/2019 |
4.2.4-patch-42020 | 1,953 | 9/27/2019 |
4.2.3 | 19,827 | 8/26/2019 |
4.2.2 | 18,073 | 7/15/2019 |
4.2.1 | 4,485 | 6/27/2019 |
4.2.0 | 6,421 | 5/21/2019 |
4.2.0-rc-42008 | 1,813 | 5/8/2019 |
4.2.0-rc-42007 | 1,772 | 4/25/2019 |
4.2.0-rc-42005 | 1,769 | 4/17/2019 |
4.2.0-rc-42003 | 1,776 | 4/12/2019 |
4.2.0-rc-42002 | 1,753 | 4/5/2019 |
4.2.0-rc-42001 | 1,784 | 3/22/2019 |
4.1.10 | 3,586 | 11/25/2019 |
4.1.9 | 2,659 | 10/14/2019 |
4.1.9-patch-41022 | 1,740 | 9/27/2019 |
4.1.8 | 5,638 | 8/26/2019 |
4.1.8-patch-41017 | 1,835 | 7/15/2019 |
4.1.7 | 2,736 | 6/27/2019 |
4.1.6 | 2,805 | 5/21/2019 |
4.1.5 | 19,203 | 4/15/2019 |
4.1.5-patch-41012 | 1,886 | 3/15/2019 |
4.1.4 | 13,761 | 2/13/2019 |
4.1.4-patch-41009 | 1,998 | 2/1/2019 |
4.1.4-patch-41008 | 3,482 | 1/7/2019 |
4.1.3 | 10,154 | 11/19/2018 |
4.1.3-patch-41006 | 2,489 | 11/5/2018 |
4.1.3-patch-41005 | 2,053 | 10/22/2018 |
4.1.2 | 8,573 | 10/15/2018 |
4.1.1 | 8,952 | 9/14/2018 |
4.1.0 | 6,138 | 8/31/2018 |
4.1.0-rc-41000 | 4,442 | 8/17/2018 |
3.5.10-patch-35323 | 126 | 8/8/2024 |
3.5.10-patch-35319 | 729 | 1/23/2023 |
3.5.10-patch-35312 | 754 | 4/12/2022 |
3.5.10-patch-35311 | 883 | 7/28/2021 |
3.5.10-patch-35310 | 810 | 7/15/2021 |
3.5.10-patch-35309 | 866 | 5/24/2021 |
3.5.10-patch-35308 | 956 | 5/16/2021 |
3.5.10-patch-35307 | 888 | 4/1/2021 |
3.5.10-patch-35305 | 1,001 | 1/13/2021 |
3.5.10-patch-35304 | 1,002 | 12/16/2020 |
3.5.10-patch-35303 | 985 | 12/3/2020 |
3.5.10-patch-35302 | 1,003 | 9/21/2020 |
3.5.10-patch-35301 | 1,006 | 8/27/2020 |
3.5.10-patch-35300 | 1,095 | 7/16/2020 |
3.5.10-patch-35296 | 1,037 | 6/19/2020 |
3.5.10-patch-35295 | 1,409 | 5/28/2020 |
3.5.10-patch-35294 | 1,084 | 5/6/2020 |
3.5.10-patch-35290 | 1,125 | 3/5/2020 |
3.5.10-patch-35289 | 2,994 | 11/7/2019 |
3.5.10-patch-35288 | 1,315 | 9/12/2019 |
3.5.10-patch-35286 | 1,268 | 8/13/2019 |
3.5.10-patch-35283 | 5,679 | 5/9/2019 |
3.5.10-patch-35282 | 1,474 | 4/23/2019 |
3.5.9 | 44,410 | 4/10/2019 |
3.5.9-patch-35280 | 1,338 | 3/19/2019 |
3.5.8 | 15,800 | 1/3/2019 |
3.5.8-patch-35278 | 1,425 | 12/10/2018 |
3.5.8-patch-35277 | 1,537 | 11/7/2018 |
3.5.8-patch-35276 | 1,478 | 11/2/2018 |
3.5.8-patch-35275 | 1,495 | 10/22/2018 |
3.5.7 | 25,427 | 9/6/2018 |
3.5.7-patch-35267 | 1,813 | 7/30/2018 |
3.5.7-patch-35266 | 1,985 | 5/31/2018 |
3.5.7-patch-35265 | 1,952 | 5/25/2018 |
3.5.7-patch-35264 | 1,914 | 5/25/2018 |
3.5.7-patch-35263 | 1,977 | 5/17/2018 |
3.5.6-patch-35261 | 2,083 | 4/15/2018 |
3.5.6-patch-35260 | 1,936 | 3/29/2018 |
3.5.6-patch-35259 | 6,391 | 3/27/2018 |
3.5.6-patch-35258 | 1,938 | 3/27/2018 |
3.5.6-patch-35257 | 2,009 | 3/7/2018 |
3.5.6-patch-35256 | 1,921 | 3/6/2018 |
3.5.6-patch-35253 | 1,886 | 2/28/2018 |
3.5.6-patch-35252 | 2,010 | 2/13/2018 |
3.5.6-patch-35251 | 1,974 | 2/7/2018 |
3.5.6-patch-35250 | 1,943 | 1/30/2018 |
3.5.6-patch-35249 | 1,894 | 1/25/2018 |
3.5.5 | 12,682 | 1/18/2018 |
3.5.5-patch-35246 | 2,879 | 1/10/2018 |
3.5.5-patch-35245 | 1,958 | 1/3/2018 |
3.5.5-patch-35244 | 1,824 | 12/12/2017 |
3.5.5-patch-35243 | 2,005 | 12/6/2017 |
3.5.5-patch-35241 | 1,769 | 11/24/2017 |
3.5.5-patch-35239 | 1,829 | 11/22/2017 |
3.5.5-patch-35237 | 1,765 | 11/16/2017 |
3.5.5-patch-35235 | 1,767 | 11/10/2017 |
3.5.5-patch-35232 | 1,791 | 11/8/2017 |
3.5.5-patch-35231 | 1,835 | 10/26/2017 |
3.5.5-patch-35223 | 1,931 | 10/10/2017 |
3.5.5-patch-35222 | 1,798 | 10/3/2017 |
3.5.5-patch-35221 | 1,786 | 9/25/2017 |
3.5.5-patch-35220 | 6,191 | 9/7/2017 |
3.5.5-patch-35219 | 1,812 | 9/4/2017 |
3.5.5-patch-35218 | 1,915 | 8/29/2017 |
3.5.5-patch-35216 | 2,549 | 7/24/2017 |
3.5.4 | 64,179 | 7/21/2017 |
3.5.4-patch-35202 | 1,943 | 5/5/2017 |
3.5.4-patch-35199 | 1,923 | 4/28/2017 |
3.5.4-patch-35196 | 1,869 | 4/25/2017 |
3.5.4-patch-35194 | 1,899 | 4/4/2017 |
3.5.3 | 28,910 | 3/8/2017 |
3.0.30187 | 2,458 | 5/19/2021 |
3.0.30183 | 8,427 | 4/1/2019 |
3.0.30182 | 12,732 | 4/27/2018 |
3.0.30181-Hotfix | 1,808 | 4/17/2018 |
3.0.30180-Hotfix | 1,863 | 3/29/2018 |
3.0.30179 | 8,836 | 7/21/2017 |
3.0.30175-Hotfix | 1,789 | 5/11/2017 |
3.0.30172-Hotfix | 2,037 | 3/30/2017 |
3.0.30171 | 3,087 | 3/8/2017 |
2.5.25043 | 10,117 | 1/13/2020 |
2.5.25042 | 3,440 | 10/3/2019 |
2.5.25041 | 14,018 | 5/16/2019 |
2.5.25040 | 3,784 | 10/17/2018 |
2.5.25039 | 5,774 | 10/2/2018 |
2.5.25038 | 3,428 | 9/17/2018 |
2.5.25037 | 3,493 | 9/13/2018 |
2.5.25034 | 3,363 | 9/6/2018 |
2.5.25033 | 3,332 | 8/17/2018 |
2.5.25032 | 9,767 | 5/8/2018 |
2.5.25031 | 4,945 | 5/3/2018 |
2.0.2380 | 43,367 | 7/11/2013 |
1.0.992 | 5,874 | 12/9/2012 |