RavenDB.Client 7.1.4-rc-71021

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

No packages depend on RavenDB.Client.

.NET 6.0

.NET Standard 2.0

.NET Standard 2.1

.NET 8.0

.NET 7.0

Version Downloads Last updated
7.1.4-rc-71022 1 11/01/2025
7.1.4-rc-71021 1 10/31/2025
7.1.4-rc-71020 1 10/31/2025
7.1.3 2 10/05/2025
7.1.3-rc-71017 3 10/06/2025
7.1.3-rc-71014 4 09/23/2025
7.1.2 5 08/21/2025
7.1.2-rc-71011 6 08/21/2025
7.1.2-rc-71008 7 08/07/2025
7.1.1 7 08/05/2025
7.1.1-rc-71006 6 07/12/2025
7.1.0 6 07/12/2025
7.1.0-rc-71004 6 06/30/2025
7.1.0-rc-71003 6 06/30/2025
7.1.0-rc-71000 8 06/09/2025
7.0.7 2 10/05/2025
7.0.6 5 08/21/2025
7.0.5 5 08/06/2025
7.0.4 6 06/29/2025
7.0.3 6 06/29/2025
7.0.2 8 06/09/2025
7.0.1 10 04/05/2025
7.0.0 9 03/07/2025
6.2.10 2 10/05/2025
6.2.10-rc-62056 2 09/26/2025
6.2.9 5 08/21/2025
6.2.8 6 08/07/2025
6.2.7 6 06/30/2025
6.2.6 6 06/29/2025
6.2.5 8 06/09/2025
6.2.4 11 04/05/2025
6.2.3 13 03/07/2025
6.2.2 10 01/19/2025
6.2.1 11 01/19/2025
6.2.0 9 01/19/2025
6.0.110 10 04/05/2025
6.0.109 11 03/07/2025
6.0.108 11 01/19/2025
6.0.107 7 03/07/2025
6.0.106 9 01/19/2025
6.0.105 11 03/07/2025
6.0.104 10 01/19/2025
6.0.103 8 01/19/2025
6.0.102 12 01/19/2025
6.0.101 11 03/27/2024
6.0.100 13 03/18/2024
6.0.4 11 03/17/2024
6.0.3 11 01/27/2024
6.0.2 11 03/12/2024
6.0.1 12 03/01/2024
6.0.0 12 03/01/2024
5.4.212 2 10/08/2025
5.4.211 5 08/21/2025
5.4.210 6 08/06/2025
5.4.209 6 06/30/2025
5.4.208 7 06/09/2025
5.4.207 11 04/05/2025
5.4.206 9 03/07/2025
5.4.205 8 03/07/2025
5.4.204 9 01/19/2025
5.4.203 10 01/19/2025
5.4.202 8 03/07/2025
5.4.201 8 03/07/2025
5.4.200 8 03/07/2025
5.4.119 10 03/07/2025
5.4.118 10 01/19/2025
5.4.117 11 03/27/2024
5.4.116 11 03/19/2024
5.4.115 10 03/19/2024
5.4.114 11 03/16/2024
5.4.113 12 03/17/2024
5.4.112 12 03/17/2024
5.4.111 10 03/18/2024
5.4.110 11 03/16/2024
5.4.109 12 03/20/2024
5.4.107 10 03/20/2024
5.4.106 12 03/19/2024
5.4.105 10 03/20/2024
5.4.104 12 03/25/2024
5.4.103 11 03/18/2024
5.4.102 11 03/14/2024
5.4.101 12 03/19/2024
5.4.100 15 03/17/2024
5.4.5 12 01/06/2024
5.4.4 12 03/03/2024
5.4.3 13 03/17/2024
5.4.2 11 03/03/2024
5.4.1 14 03/03/2024
5.4.0 13 03/03/2024
5.3.108 11 03/16/2024
5.3.107 13 03/17/2024
5.3.106 11 03/16/2024
5.3.105 12 03/18/2024
5.3.104 11 03/13/2024
5.3.103 10 03/18/2024
5.3.102 13 02/08/2024
5.3.101 12 03/17/2024
5.3.100 11 03/13/2024
5.3.2 13 03/25/2024
5.3.1 13 03/02/2024
5.3.0 15 03/01/2024
5.2.116 9 11/22/2024
5.2.115 12 03/12/2024
5.2.114 11 03/17/2024
5.2.113 9 03/19/2024
5.2.112 13 03/01/2024
5.2.111 12 03/18/2024
5.2.110 13 03/03/2024
5.2.109 10 03/14/2024
5.2.108 11 03/17/2024
5.2.107 10 03/14/2024
5.2.106 10 03/17/2024
5.2.105 10 03/13/2024
5.2.104 12 03/13/2024
5.2.103 10 03/14/2024
5.2.102 10 03/12/2024
5.2.101 10 03/18/2024
5.2.100 11 03/02/2024
5.2.6 13 03/02/2024
5.2.5 13 03/02/2024
5.2.4 12 03/03/2024
5.2.3 13 03/02/2024
5.2.2 11 03/01/2024
5.2.1 13 03/04/2024
5.2.0 12 03/02/2024
5.1.13 9 03/19/2024
5.1.12 9 03/16/2024
5.1.11 10 03/18/2024
5.1.10 10 03/18/2024
5.1.9 9 03/16/2024
5.1.8 13 03/01/2024
5.1.7 11 03/03/2024
5.1.6 14 03/01/2024
5.1.5 9 03/13/2024
5.1.4 11 03/01/2024
5.1.3 12 03/02/2024
5.1.2 13 03/02/2024
5.1.1 12 03/02/2024
5.1.0 11 03/01/2024
5.0.14 12 03/17/2024
5.0.13 11 03/24/2024
5.0.12 15 03/16/2024
5.0.11 9 03/24/2024
5.0.10 14 03/02/2024
5.0.9 12 03/03/2024
5.0.8 12 03/02/2024
5.0.7 13 03/02/2024
5.0.6 11 03/02/2024
5.0.5 13 03/03/2024
5.0.4 12 03/02/2024
5.0.3 13 03/02/2024
5.0.2 14 03/02/2024
5.0.1 14 03/02/2024
5.0.0 10 03/01/2024
4.2.124 12 03/20/2024
4.2.123 12 03/19/2024
4.2.122 11 03/27/2024
4.2.121 10 03/24/2024
4.2.120 13 03/21/2024
4.2.119 10 03/21/2024
4.2.118 11 03/20/2024
4.2.117 12 03/21/2024
4.2.116 12 03/21/2024
4.2.115 10 03/21/2024
4.2.114 12 03/20/2024
4.2.113 9 03/21/2024
4.2.112 11 03/20/2024
4.2.111 11 03/20/2024
4.2.110 10 03/20/2024
4.2.109 13 03/21/2024
4.2.108 11 03/20/2024
4.2.107 10 03/21/2024
4.2.106 10 03/20/2024
4.2.105 12 03/20/2024
4.2.104 12 03/19/2024
4.2.103 11 03/20/2024
4.2.102 12 03/19/2024
4.2.101 13 03/18/2024
4.2.100 12 03/18/2024
4.2.8 13 03/02/2024
4.2.6 14 03/02/2024
4.2.5 13 03/02/2024
4.2.5-patch-42026 11 03/21/2024
4.2.4 11 03/03/2024
4.2.4-patch-42020 13 03/19/2024
4.2.3 13 03/02/2024
4.2.2 13 03/01/2024
4.2.1 13 03/02/2024
4.2.0 13 03/05/2024
4.2.0-rc-42008 11 03/03/2024
4.2.0-rc-42007 11 03/05/2024
4.2.0-rc-42005 11 03/18/2024
4.2.0-rc-42003 13 03/21/2024
4.2.0-rc-42002 13 03/21/2024
4.2.0-rc-42001 9 01/19/2025
4.1.10 12 03/12/2024
4.1.9 11 03/17/2024
4.1.9-patch-41022 12 03/21/2024
4.1.8 15 03/02/2024
4.1.8-patch-41017 13 03/21/2024
4.1.7 11 03/03/2024
4.1.6 11 03/12/2024
4.1.5 13 01/13/2024
4.1.5-patch-41012 11 03/20/2024
4.1.4 11 03/02/2024
4.1.4-patch-41009 12 03/18/2024
4.1.4-patch-41008 13 03/21/2024
4.1.3 11 03/02/2024
4.1.3-patch-41006 13 03/19/2024
4.1.3-patch-41005 12 03/18/2024
4.1.2 15 01/28/2024
4.1.1 13 03/03/2024
4.1.0 12 03/01/2024
4.1.0-rc-41000 12 03/20/2024
4.0.11 12 03/16/2024
4.0.10 14 03/16/2024
4.0.10-patch-40057 11 01/19/2025
4.0.10-patch-40056 11 03/21/2024
4.0.9 12 03/18/2024
4.0.9-patch-40054 11 03/07/2025
4.0.9-patch-40052 10 03/21/2024
4.0.8 14 03/20/2024
4.0.7 13 03/21/2024
4.0.6 12 08/31/2023
4.0.6-patch-40047 13 03/21/2024
4.0.5 11 03/03/2024
4.0.4-patch-40038 13 03/21/2024
4.0.3 10 01/21/2024
4.0.3-patch-40034 9 01/19/2025
4.0.3-patch-40033 11 03/21/2024
4.0.3-patch-40031 12 03/22/2024
4.0.2 12 01/14/2024
4.0.1 12 03/02/2024
4.0.0 12 03/02/2024
3.5.10-patch-35323 10 03/07/2025
3.5.10-patch-35319 12 01/11/2025
3.5.10-patch-35312 11 03/21/2024
3.5.10-patch-35311 12 03/21/2024
3.5.10-patch-35310 12 03/21/2024
3.5.10-patch-35309 14 03/21/2024
3.5.10-patch-35308 13 03/21/2024
3.5.10-patch-35307 12 03/21/2024
3.5.10-patch-35305 13 03/21/2024
3.5.10-patch-35304 14 03/18/2024
3.5.10-patch-35303 13 03/21/2024
3.5.10-patch-35302 13 03/21/2024
3.5.10-patch-35301 12 03/21/2024
3.5.10-patch-35300 12 03/21/2024
3.5.10-patch-35296 11 03/22/2024
3.5.10-patch-35295 12 03/21/2024
3.5.10-patch-35294 13 03/21/2024
3.5.10-patch-35290 12 03/02/2024
3.5.10-patch-35289 10 03/07/2025
3.5.10-patch-35288 13 03/22/2024
3.5.10-patch-35286 12 03/21/2024
3.5.10-patch-35283 12 03/21/2024
3.5.10-patch-35282 12 03/21/2024
3.5.9 11 03/01/2024
3.5.9-patch-35280 13 03/21/2024
3.5.8 16 03/02/2024
3.5.8-patch-35278 13 03/21/2024
3.5.8-patch-35277 13 03/21/2024
3.5.8-patch-35276 12 03/19/2024
3.5.8-patch-35275 13 03/21/2024
3.5.7 12 03/13/2024
3.5.7-patch-35267 12 03/21/2024
3.5.7-patch-35266 13 03/21/2024
3.5.7-patch-35265 11 03/27/2024
3.5.7-patch-35264 12 03/21/2024
3.5.7-patch-35263 13 03/21/2024
3.5.6 11 01/25/2024
3.5.6-patch-35261 12 03/22/2024
3.5.6-patch-35260 12 03/22/2024
3.5.6-patch-35259 12 03/21/2024
3.5.6-patch-35258 13 01/19/2025
3.5.6-patch-35257 11 03/21/2024
3.5.6-patch-35256 12 03/21/2024
3.5.6-patch-35253 12 03/21/2024
3.5.6-patch-35252 13 03/21/2024
3.5.6-patch-35251 15 03/18/2024
3.5.6-patch-35250 13 03/21/2024
3.5.6-patch-35249 12 03/22/2024
3.5.5 13 03/02/2024
3.5.5-patch-35246 11 03/21/2024
3.5.5-patch-35245 11 03/21/2024
3.5.5-patch-35244 12 03/21/2024
3.5.5-patch-35243 12 03/21/2024
3.5.5-patch-35241 12 03/19/2024
3.5.5-patch-35239 12 03/22/2024
3.5.5-patch-35237 11 03/21/2024
3.5.5-patch-35235 12 03/21/2024
3.5.5-patch-35232 13 03/28/2024
3.5.5-patch-35231 12 03/21/2024
3.5.5-patch-35223 13 03/21/2024
3.5.5-patch-35222 11 03/21/2024
3.5.5-patch-35221 12 03/21/2024
3.5.5-patch-35220 11 03/21/2024
3.5.5-patch-35219 13 03/21/2024
3.5.5-patch-35218 12 03/22/2024
3.5.5-patch-35216 13 03/21/2024
3.5.4 13 03/02/2024
3.5.4-patch-35202 12 03/21/2024
3.5.4-patch-35199 12 03/21/2024
3.5.4-patch-35196 11 03/19/2024
3.5.4-patch-35194 12 03/21/2024
3.5.3 14 03/02/2024
3.0.30187 12 03/20/2024
3.0.30183 11 03/18/2024
3.0.30182 9 03/07/2025
3.0.30181-Hotfix 13 03/17/2024
3.0.30180-Hotfix 13 03/17/2024
3.0.30179 11 03/02/2024
3.0.30175-Hotfix 13 03/18/2024
3.0.30172-Hotfix 13 03/17/2024
3.0.30171 12 03/04/2024
2.5.25043 12 03/21/2024
2.5.25042 10 03/06/2024
2.5.25041 12 03/02/2024
2.5.25040 12 03/21/2024
2.5.25039 11 03/19/2024
2.5.25038 11 03/21/2024
2.5.25037 12 03/21/2024
2.5.25034 12 03/21/2024
2.5.25033 12 03/05/2024
2.5.25032 11 03/21/2024
2.5.25031 13 03/21/2024
2.0.2380 12 03/21/2024
1.0.992 12 03/21/2024