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