RavenDB.Client 7.1.0-rc-71000

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