RavenDB.Client 7.1.4

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

RavenDB .NET Client

You're looking at RavenDB .NET Client (SDK) NuGet release.
It makes it easy for you to communicate with your RavenDB instance, letting you perform any database operations with 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

Get the latest stable version from NuGet.

Learning resources

Community

Getting started

Initialize

using (IDocumentStore store = new DocumentStore
{
    Urls = new[]                        // URL to the Server,
    {                                   // or list of URLs 
        "http://live-test.ravendb.net"  // to all Cluster Servers (Nodes)
    },
    Database = "Northwind",             // Default database that DocumentStore will interact with
    Conventions = { }                   // DocumentStore customizations
})
{
    store.Initialize();                 // Each DocumentStore needs to be initialized before use.
                                        // This process establishes the connection with the Server
                                        // and downloads various configurations
                                        // e.g. cluster topology or client configuration
}

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 is compatible.  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 is compatible.  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 is compatible.  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 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  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 (240)

Showing the top 5 NuGet packages that depend on RavenDB.Client:

Package Downloads
RavenDB.Database

Use this package if you want extend RavenDB. Don't use this package if you just want to work with existing RavenDB server, in order to so just use the client API which is in the RavenDB.Client package. RavenDB is a document database for the .NET platform, offering a flexible data model design to fit the needs of real world systems. Note: If you encounter issue to install this package, please consult the following link: https://groups.google.com/forum/#!topic/ravendb/4TeMq7_7Esc

RavenDB.Embedded

RavenDB Embedded library to run ravendb in embedded way

TIKSN-Framework

This is a .NET Framework enhancement framework. Main features are Versioning, Finance, Currency, Foreign Exchange, Money, Pricing strategy, Telemetry, Composite Weighted Progress, Repository and Unity of Wok pattern implementation with Entity Framework Core, Network Connectivity Service and Triggering, Settings, Windows Registry configuration source, Azure Storage Repository, MongoDB Repository, NoDB Repository, Lingual and Regional Localization, Serialization, Rest Requester, Rest Repository, Dependency Injection, Composition Root Setup base classes.

RavenDB.Client.UniqueConstraints

RavenDB 'Unique Constraints' bundle client. Allow the user to implement unique constraints in the objects (useful for properties like email or social security number).

RavenDB.Client.Authorization

RavenDB 'Authorization' bundle client extend RavenDB and add document level permissions.

GitHub repositories (38)

Showing the top 20 popular GitHub repositories that depend on RavenDB.Client:

Repository Stars
danielgerlag/workflow-core
Lightweight workflow engine for .NET Standard
ChilliCream/graphql-platform
Welcome to the home of the Hot Chocolate GraphQL server for .NET, the Strawberry Shake GraphQL client for .NET and Nitro the awesome Monaco based GraphQL IDE.
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
Xabaril/AspNetCore.Diagnostics.HealthChecks
Enterprise HealthChecks for ASP.NET Core Diagnostics Package
testcontainers/testcontainers-dotnet
A library to support tests with throwaway instances of Docker containers for all compatible .NET Standard versions.
FastReports/FastReport
Free Open Source Reporting tool for .NET6/.NET Core/.NET Framework that helps your application generate document-like reports
thepirat000/Audit.NET
An extensible framework to audit executing operations in .NET and .NET Core.
asynkron/protoactor-dotnet
Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin
JasperFx/wolverine
Supercharged .NET server side development!
Aguafrommars/TheIdServer
OpenID/Connect, OAuth2, WS-Federation and SAML 2.0 server based on Duende IdentityServer and ITFoxtec Identity SAML 2.0 with its admin UI
aelassas/wexflow
Workflow Automation Engine
brockallen/BrockAllen.MembershipReboot
MembershipReboot is a user identity management and authentication library.
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
PacktPublishing/Hands-On-Domain-Driven-Design-with-.NET-Core
Hands-On Domain-Driven Design with .NET Core, published by Packt
SharpRepository/SharpRepository
C# Generic Repository for use with Entity Framework, RavenDB and more with built-in caching options.
pjvds/ncqrs
Ncqrs Framework - The CQRS Framework for .NET
CommunityToolkit/Aspire
A community project with additional components and extensions for .NET Aspire
linkdotnet/Blog
A blog (engine) completely written in C# and Blazor. It aims to be a simple use and easy to extend platform. Blogposts are written in Markdown and are rendered to HTML. This gives all the flexibility needed to express yourself but also have an easy way of creating posts in the first place.
n2cms/n2cms
N2 CMS, an open source CMS for ASP.NET
TcOpenGroup/TcOpen
Application framework for industrial automation built on top of TwinCAT3 and .NET.
Version Downloads Last Updated
7.1.4 5,802 11/12/2025
7.1.4-rc-71023 252 11/7/2025
7.1.4-rc-71022 357 10/29/2025
7.1.4-rc-71021 207 10/28/2025
7.1.4-rc-71020 265 10/27/2025
7.1.3 21,094 10/2/2025
7.1.3-rc-71017 253 10/2/2025
7.1.3-rc-71014 552 9/17/2025
7.1.2 25,262 8/19/2025
7.1.2-rc-71011 380 8/11/2025
7.1.2-rc-71008 328 8/6/2025
7.1.1 12,421 7/22/2025
7.1.1-rc-71006 404 7/8/2025
7.1.0 13,093 7/1/2025
7.1.0-rc-71004 445 6/25/2025
7.1.0-rc-71003 259 6/18/2025
7.1.0-rc-71000 330 5/29/2025
7.0.8 611 11/12/2025
7.0.7 1,086 10/2/2025
7.0.6 1,398 8/19/2025
7.0.5 1,858 7/22/2025
7.0.4 3,925 6/25/2025
7.0.3 9,716 6/10/2025
7.0.2 61,195 4/29/2025
7.0.1 20,125 3/27/2025
7.0.0 45,280 2/4/2025
6.2.11 1,331 11/12/2025
6.2.10 14,471 10/2/2025
6.2.10-rc-62056 503 9/16/2025
6.2.9 8,376 8/19/2025
6.2.8 7,423 7/22/2025
6.2.7 6,252 6/25/2025
6.2.6 23,796 6/10/2025
6.2.5 20,230 4/29/2025
6.2.4 53,509 3/18/2025
6.2.3 150,995 1/21/2025
6.2.2 60,340 12/11/2024
6.2.1 85,024 10/30/2024
6.2.0 80,325 9/17/2024
6.0.110 2,289 3/18/2025
6.0.109 3,090 1/21/2025
6.0.108 2,669 12/11/2024
6.0.107 3,639 10/30/2024
6.0.106 52,533 9/17/2024
6.0.105 126,415 7/23/2024
6.0.104 103,840 6/17/2024
6.0.103 23,437 5/16/2024
6.0.102 39,136 4/29/2024
6.0.101 59,306 3/19/2024
6.0.100 86,187 2/12/2024
6.0.4 29,925 1/19/2024
6.0.3 85,252 1/16/2024
6.0.2 93,563 12/27/2023
6.0.1 99,873 11/14/2023
6.0.0 32,269 10/2/2023
5.4.213 706 11/12/2025
5.4.212 2,232 10/2/2025
5.4.211 6,041 8/19/2025
5.4.210 2,784 7/22/2025
5.4.209 5,380 6/10/2025
5.4.208 6,717 4/29/2025
5.4.207 13,903 3/18/2025
5.4.206 34,069 1/21/2025
5.4.205 15,133 12/11/2024
5.4.204 49,495 10/30/2024
5.4.203 18,568 10/2/2024
5.4.202 12,138 9/17/2024
5.4.201 55,920 7/23/2024
5.4.200 97,327 6/17/2024
5.4.119 14,155 5/16/2024
5.4.118 32,513 4/29/2024
5.4.117 27,925 3/19/2024
5.4.116 75,572 2/12/2024
5.4.115 29,026 1/18/2024
5.4.114 2,340 1/16/2024
5.4.113 14,415 12/27/2023
5.4.112 268,249 11/14/2023
5.4.111 43,351 10/3/2023
5.4.110 32,770 9/12/2023
5.4.109 165,152 8/1/2023
5.4.107 160,768 6/23/2023
5.4.106 4,789 6/22/2023
5.4.105 10,652 6/20/2023
5.4.104 160,315 5/12/2023
5.4.103 153,468 3/30/2023
5.4.102 16,802 3/27/2023
5.4.101 83,687 2/13/2023
5.4.100 202,203 1/9/2023
5.4.5 169,058 11/21/2022
5.4.4 117,092 10/12/2022
5.4.3 14,734 10/10/2022
5.4.2 97,383 9/1/2022
5.4.1 279,450 7/19/2022
5.4.0 18,167 7/18/2022
5.3.108 55,036 1/9/2023
5.3.107 16,796 11/21/2022
5.3.106 6,427 10/10/2022
5.3.105 6,514 9/1/2022
5.3.104 33,431 7/18/2022
5.3.103 101,200 6/7/2022
5.3.102 243,179 4/19/2022
5.3.101 154,247 3/15/2022
5.3.100 162,696 2/1/2022
5.3.2 54,661 1/7/2022
5.3.1 32,280 12/21/2021
5.3.0 40,616 11/29/2021
5.2.116 3,050 8/1/2023
5.2.115 3,120 6/23/2023
5.2.114 2,954 6/22/2023
5.2.113 2,959 6/20/2023
5.2.112 4,084 5/12/2023
5.2.111 4,426 3/30/2023
5.2.110 4,568 3/27/2023
5.2.109 4,374 2/13/2023
5.2.108 18,036 1/9/2023
5.2.107 7,022 11/21/2022
5.2.106 5,626 10/10/2022
5.2.105 7,265 9/1/2022
5.2.104 4,713 7/18/2022
5.2.103 6,072 6/7/2022
5.2.102 19,425 4/19/2022
5.2.101 36,568 3/15/2022
5.2.100 27,124 2/1/2022
5.2.6 12,210 1/7/2022
5.2.5 7,691 12/21/2021
5.2.4 76,183 11/15/2021
5.2.3 215,600 9/29/2021
5.2.2 127,718 8/16/2021
5.2.1 127,620 7/1/2021
5.2.0 22,358 6/21/2021
5.1.13 4,594 12/21/2021
5.1.12 4,481 11/15/2021
5.1.11 9,859 9/29/2021
5.1.10 5,985 8/16/2021
5.1.9 18,629 7/1/2021
5.1.8 39,556 5/26/2021
5.1.7 102,903 4/23/2021
5.1.6 39,720 4/13/2021
5.1.5 110,646 3/1/2021
5.1.4 94,629 2/1/2021
5.1.3 31,820 1/25/2021
5.1.2 139,723 12/11/2020
5.1.1 12,495 12/1/2020
5.1.0 27,559 11/18/2020
5.0.14 7,148 6/16/2021
5.0.13 4,589 5/24/2021
5.0.12 16,244 4/23/2021
5.0.11 12,507 4/13/2021
5.0.10 5,060 3/1/2021
5.0.9 7,019 2/1/2021
5.0.8 6,709 1/25/2021
5.0.7 10,017 12/11/2020
5.0.6 4,919 12/1/2020
5.0.5 30,112 11/16/2020
5.0.4 21,783 11/10/2020
5.0.3 50,905 9/28/2020
5.0.2 164,166 8/17/2020
5.0.1 8,505 8/5/2020
5.0.0 291,881 7/23/2020
4.2.124 8,735 6/19/2023
4.2.123 30,490 6/7/2022
4.2.122 6,606 4/19/2022
4.2.121 8,374 3/15/2022
4.2.120 18,529 2/1/2022
4.2.119 5,384 12/21/2021
4.2.118 9,846 11/15/2021
4.2.117 9,866 9/29/2021
4.2.116 7,749 8/16/2021
4.2.115 5,610 7/1/2021
4.2.114 14,615 5/24/2021
4.2.113 7,854 4/23/2021
4.2.112 19,491 4/13/2021
4.2.111 14,366 3/1/2021
4.2.110 17,925 2/1/2021
4.2.109 5,930 1/25/2021
4.2.108 36,410 11/16/2020
4.2.107 4,969 11/10/2020
4.2.106 28,717 9/28/2020
4.2.105 25,536 8/17/2020
4.2.104 8,647 7/22/2020
4.2.103 72,788 5/25/2020
4.2.102 43,636 4/15/2020
4.2.101 71,668 3/3/2020
4.2.100 6,043 3/2/2020
4.2.8 95,491 1/21/2020
4.2.6 118,318 12/9/2019
4.2.5 33,036 11/25/2019
4.2.5-patch-42026 2,668 11/13/2019
4.2.4 46,263 10/14/2019
4.2.4-patch-42020 2,934 9/27/2019
4.2.3 131,031 8/26/2019
4.2.2 48,791 7/15/2019
4.2.1 66,866 6/27/2019
4.2.0 126,411 5/21/2019
4.2.0-rc-42008 4,061 5/8/2019
4.2.0-rc-42007 2,599 4/25/2019
4.2.0-rc-42005 2,977 4/17/2019
4.2.0-rc-42003 2,544 4/12/2019
4.2.0-rc-42002 2,743 4/5/2019
4.2.0-rc-42001 2,697 3/22/2019
4.1.10 12,964 11/25/2019
4.1.9 4,852 10/14/2019
4.1.9-patch-41022 2,476 9/27/2019
4.1.8 9,112 8/26/2019
4.1.8-patch-41017 2,510 7/15/2019
4.1.7 12,447 6/27/2019
4.1.6 8,054 5/21/2019
4.1.5 32,702 4/15/2019
4.1.5-patch-41012 2,847 3/15/2019
4.1.4 47,475 2/13/2019
4.1.4-patch-41009 2,904 2/1/2019
4.1.4-patch-41008 4,557 1/7/2019
4.1.3 60,430 11/19/2018
4.1.3-patch-41006 3,356 11/5/2018
4.1.3-patch-41005 3,109 10/22/2018
4.1.2 22,564 10/15/2018
4.1.1 45,770 9/14/2018
4.1.0 9,705 8/31/2018
4.1.0-rc-41000 4,986 8/17/2018
4.0.11 5,983 2/28/2019
4.0.10 4,290 2/13/2019
4.0.10-patch-40057 2,413 2/1/2019
4.0.10-patch-40056 2,363 1/7/2019
4.0.9 4,419 11/19/2018
4.0.9-patch-40054 2,699 11/5/2018
4.0.9-patch-40052 2,475 10/22/2018
4.0.8 4,790 10/15/2018
4.0.7 16,764 8/31/2018
4.0.6 83,528 8/3/2018
4.0.6-patch-40047 3,297 7/2/2018
4.0.5 41,388 6/12/2018
4.0.4-patch-40038 3,291 5/18/2018
4.0.3 35,162 4/23/2018
4.0.3-patch-40034 3,789 3/30/2018
4.0.3-patch-40033 7,715 3/19/2018
4.0.3-patch-40031 3,192 3/7/2018
4.0.2 44,387 2/26/2018
4.0.1 6,446 2/20/2018
4.0.0 18,130 2/6/2018
3.5.10-patch-35323 2,404 8/8/2024
3.5.10-patch-35319 18,744 1/23/2023
3.5.10-patch-35312 26,274 4/12/2022
3.5.10-patch-35311 62,648 7/28/2021
3.5.10-patch-35310 3,479 7/15/2021
3.5.10-patch-35309 4,104 5/24/2021
3.5.10-patch-35308 3,675 5/16/2021
3.5.10-patch-35307 4,133 4/1/2021
3.5.10-patch-35305 14,775 1/13/2021
3.5.10-patch-35304 20,785 12/16/2020
3.5.10-patch-35303 11,036 12/3/2020
3.5.10-patch-35302 4,296 9/21/2020
3.5.10-patch-35301 5,310 8/27/2020
3.5.10-patch-35300 4,808 7/16/2020
3.5.10-patch-35296 11,737 6/19/2020
3.5.10-patch-35295 4,772 5/28/2020
3.5.10-patch-35294 4,315 5/6/2020
3.5.10-patch-35290 4,262 3/5/2020
3.5.10-patch-35289 9,592 11/7/2019
3.5.10-patch-35288 4,511 9/12/2019
3.5.10-patch-35286 4,491 8/13/2019
3.5.10-patch-35283 14,565 5/9/2019
3.5.10-patch-35282 4,499 4/23/2019
3.5.9 372,417 4/10/2019
3.5.9-patch-35280 4,567 3/19/2019
3.5.8 68,696 1/3/2019
3.5.8-patch-35278 4,689 12/10/2018
3.5.8-patch-35277 4,832 11/7/2018
3.5.8-patch-35276 4,625 11/2/2018
3.5.8-patch-35275 4,680 10/22/2018
3.5.7 175,473 9/6/2018
3.5.7-patch-35267 5,207 7/30/2018
3.5.7-patch-35266 6,784 5/31/2018
3.5.7-patch-35265 5,328 5/25/2018
3.5.7-patch-35264 5,159 5/25/2018
3.5.7-patch-35263 7,127 5/17/2018
3.5.6 223,388 4/27/2018
3.5.6-patch-35261 5,926 4/15/2018
3.5.6-patch-35260 5,162 3/29/2018
3.5.6-patch-35259 168,930 3/27/2018
3.5.6-patch-35258 5,110 3/27/2018
3.5.6-patch-35257 5,142 3/7/2018
3.5.6-patch-35256 5,163 3/6/2018
3.5.6-patch-35253 4,954 2/28/2018
3.5.6-patch-35252 10,963 2/13/2018
3.5.6-patch-35251 5,268 2/7/2018
3.5.6-patch-35250 5,191 1/30/2018
3.5.6-patch-35249 5,285 1/25/2018
3.5.5 182,218 1/18/2018
3.5.5-patch-35246 7,525 1/10/2018
3.5.5-patch-35245 5,827 1/3/2018
3.5.5-patch-35244 5,873 12/12/2017
3.5.5-patch-35243 5,764 12/6/2017
3.5.5-patch-35241 12,439 11/24/2017
3.5.5-patch-35239 6,047 11/22/2017
3.5.5-patch-35237 5,464 11/16/2017
3.5.5-patch-35235 5,462 11/10/2017
3.5.5-patch-35232 5,236 11/8/2017
3.5.5-patch-35231 5,173 10/26/2017
3.5.5-patch-35223 6,773 10/10/2017
3.5.5-patch-35222 5,614 10/3/2017
3.5.5-patch-35221 7,631 9/25/2017
3.5.5-patch-35220 11,418 9/7/2017
3.5.5-patch-35219 5,323 9/4/2017
3.5.5-patch-35218 12,885 8/29/2017
3.5.5-patch-35216 6,879 7/24/2017
3.5.4 239,365 7/21/2017
3.5.4-patch-35202 12,387 5/5/2017
3.5.4-patch-35199 7,471 4/28/2017
3.5.4-patch-35196 5,118 4/25/2017
3.5.4-patch-35194 5,219 4/4/2017
3.5.3 220,912 3/8/2017
3.0.30187 16,034 5/19/2021
3.0.30183 37,808 4/1/2019
3.0.30182 24,569 4/27/2018
3.0.30181-Hotfix 6,261 4/17/2018
3.0.30180-Hotfix 6,379 3/29/2018
3.0.30179 40,252 7/21/2017
3.0.30175-Hotfix 6,230 5/11/2017
3.0.30172-Hotfix 6,499 3/31/2017
3.0.30171 45,473 3/8/2017
2.5.25043 38,912 1/13/2020
2.5.25042 11,646 10/3/2019
2.5.25041 23,248 5/16/2019
2.5.25040 15,731 10/17/2018
2.5.25039 20,684 10/2/2018
2.5.25038 12,624 9/17/2018
2.5.25037 9,448 9/13/2018
2.5.25034 9,544 9/6/2018
2.5.25033 10,050 8/17/2018
2.5.25032 39,254 5/8/2018
2.5.25031 18,700 5/3/2018
2.0.2380 205,357 7/11/2013
1.0.992 14,083 12/9/2012