Couchbase.Lite
4.0.2
Prefix Reserved
dotnet add package Couchbase.Lite --version 4.0.2
NuGet\Install-Package Couchbase.Lite -Version 4.0.2
<PackageReference Include="Couchbase.Lite" Version="4.0.2" />
<PackageVersion Include="Couchbase.Lite" Version="4.0.2" />
<PackageReference Include="Couchbase.Lite" />
paket add Couchbase.Lite --version 4.0.2
#r "nuget: Couchbase.Lite, 4.0.2"
#:package Couchbase.Lite@4.0.2
#addin nuget:?package=Couchbase.Lite&version=4.0.2
#tool nuget:?package=Couchbase.Lite&version=4.0.2
Couchbase Lite .NET
Couchbase Lite is a lightweight embedded NoSQL database that has built-in sync to larger backend structures, such as Couchbase Server.
This is the source repo of Couchbase Lite C#. The main supported platforms are .NET 6 Desktop (Linux will run anywhere, but is most tested on Ubuntu), .NET 8 iOS, .NET 8 Android, .NET 8 Mac Catalyst, .NET 8 WinUI, Xamarin iOS, and Xamarin Android.
Documentation Overview
- Official Documentation
- API References - See the release notes for each release on this repo
Getting Started
The following starter code demonstrates the basic concepts of the library:
using System;
using Couchbase.Lite;
using Couchbase.Lite.Query;
using Couchbase.Lite.Sync;
// Get the database (and create it if it doesn't exist)
var database = new Database("mydb");
var collection = database.GetDefaultCollection();
// Create a new document (i.e. a record) in the database
var id = default(string);
using var createdDoc = new MutableDocument();
createdDoc.SetFloat("version", 2.0f)
.SetString("type", "SDK");
// Save it to the database
collection.Save(createdDoc);
id = createdDoc.Id;
// Update a document
using var doc = collection.GetDocument(id);
using var mutableDoc = doc.ToMutable();
createdDoc.SetString("language", "C#");
collection.Save(createdDoc);
using var docAgain = collection.GetDocument(id);
Console.WriteLine($"Document ID :: {docAgain.Id}");
Console.WriteLine($"Learning {docAgain.GetString("language")}");
// Create a query to fetch documents of type SDK
// i.e. SELECT * FROM database WHERE type = "SDK"
using var query = QueryBuilder.Select(SelectResult.All())
.From(DataSource.Collection(collection))
.Where(Expression.Property("type").EqualTo(Expression.String("SDK")));
// Alternatively, using SQL++, with _ referring to the database
using var sqlppQuery = collection.CreateQuery("SELECT * FROM _ WHERE type = 'SDK'");
// Run the query
var result = query.Execute();
Console.WriteLine($"Number of rows :: {result.AllResults().Count}");
// Create replicator to push and pull changes to and from the cloud
var targetEndpoint = new URLEndpoint(new Uri("ws://localhost:4984/getting-started-db"));
var replConfig = new ReplicatorConfiguration(targetEndpoint);
replConfig.AddCollection(database.GetDefaultCollection());
// Add authentication
replConfig.Authenticator = new BasicAuthenticator("john", "pass");
// Create replicator
var replicator = new Replicator(replConfig);
replicator.AddChangeListener((sender, args) =>
{
if (args.Status.Error != null) {
Console.WriteLine($"Error :: {args.Status.Error}");
}
});
replicator.Start();
// Later, stop and dispose the replicator *before* closing/disposing the database
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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-android35.0 is compatible. net9.0-browser was computed. net9.0-ios was computed. net9.0-ios18.0 is compatible. net9.0-maccatalyst was computed. net9.0-maccatalyst18.0 is compatible. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net9.0-windows10.0.19041 is compatible. 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 Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Couchbase.Lite.Support.NetDesktop (= 4.0.2)
- IndexRange (>= 1.1.0)
- Microsoft.Bcl.HashCode (>= 6.0.0)
- Microsoft.Extensions.DependencyInjection (>= 9.0.8)
- SerialQueue (>= 2.1.0)
- System.Collections.Immutable (>= 9.0.8)
- System.Text.Json (>= 9.0.8)
-
net8.0
- Couchbase.Lite.Support.NetDesktop (= 4.0.2)
- Microsoft.Extensions.DependencyInjection (>= 9.0.8)
- SerialQueue (>= 2.1.0)
-
net9.0-android35.0
- Couchbase.Lite.Support.Android (= 4.0.2)
- Microsoft.Extensions.DependencyInjection (>= 9.0.8)
- SerialQueue (>= 2.1.0)
-
net9.0-ios18.0
- Couchbase.Lite.Support.iOS (= 4.0.2)
- Microsoft.Extensions.DependencyInjection (>= 9.0.8)
- SerialQueue (>= 2.1.0)
-
net9.0-maccatalyst18.0
- Couchbase.Lite.Support.iOS (= 4.0.2)
- Microsoft.Extensions.DependencyInjection (>= 9.0.8)
- SerialQueue (>= 2.1.0)
-
net9.0-windows10.0.19041
- Couchbase.Lite.Support.NetDesktop (= 4.0.2)
- Microsoft.Extensions.DependencyInjection (>= 9.0.8)
- SerialQueue (>= 2.1.0)
NuGet packages (11)
Showing the top 5 NuGet packages that depend on Couchbase.Lite:
| Package | Downloads |
|---|---|
|
MvvX.Plugins.CouchBaseLite
This package contains the 'CouchBaseLite' plugin for MvvmCross. |
|
|
Couchbase.Lite.Listener
Provides Couchbase Lite with a self-hosted REST API. |
|
|
KidoZen
This package contains the KidoZen SDK assemblies. |
|
|
NoSqlRepositories.CouchBaseLite
This package is designed for Couchbase lite |
|
|
Linq2CouchBaseLiteExpression
This package let you create linq queries to querying a couchbase lite database |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 4.0.2 | 2,605 | 12/17/2025 | |
| 4.0.0 | 24,864 | 11/24/2025 | |
| 3.2.4 | 38,784 | 6/12/2025 | |
| 3.2.3 | 25,815 | 4/30/2025 | |
| 3.2.2 | 30,570 | 3/14/2025 | |
| 3.2.1 | 40,285 | 11/13/2024 | |
| 3.2.0 | 42,015 | 8/30/2024 | |
| 3.2.0-beta.2 | 274 | 5/16/2024 | |
| 3.1.10 | 29,588 | 11/25/2024 | |
| 3.1.9 | 26,447 | 8/9/2024 | |
| 3.1.7 | 25,816 | 5/1/2024 | |
| 3.1.6 | 33,083 | 3/6/2024 | |
| 3.1.3 | 86,755 | 11/16/2023 | |
| 3.1.1 | 32,685 | 7/18/2023 | |
| 3.1.0 | 28,040 | 4/27/2023 | |
| 3.0.15 | 25,205 | 11/6/2023 | |
| 3.0.12 | 26,084 | 6/26/2023 | |
| 3.0.8 | 29,038 | 2/8/2023 | |
| 3.0.2 | 40,763 | 8/2/2022 | |
| 3.0.0 | 75,931 | 2/22/2022 | |
| 3.0.0-beta02 | 1,215 | 10/19/2021 | |
| 3.0.0-beta01 | 1,169 | 9/21/2021 | |
| 2.8.6 | 42,457 | 8/3/2021 | |
| 2.8.4 | 47,560 | 3/2/2021 | |
| 2.8.2 | 37,097 | 11/20/2020 | |
| 2.8.0 | 34,202 | 9/30/2020 | |
| 2.7.1 | 52,251 | 4/17/2020 | |
| 2.7.0 | 32,960 | 1/16/2020 | |
| 2.6.4 | 26,368 | 2/11/2020 | |
| 2.6.0 | 49,797 | 8/27/2019 | |
| 2.5.3 | 27,836 | 7/31/2019 | |
| 2.5.2 | 27,520 | 7/3/2019 | |
| 2.5.0 | 55,242 | 4/30/2019 | |
| 2.1.5 | 26,495 | 5/23/2019 | |
| 2.1.2 | 61,356 | 11/16/2018 | |
| 2.1.1 | 29,548 | 10/5/2018 | |
| 2.1.0 | 27,907 | 8/30/2018 | |
| 2.0.3 | 55,280 | 6/5/2018 | |
| 2.0.2 | 27,171 | 6/1/2018 | |
| 2.0.0.1 | 56,446 | 4/12/2018 | |
| 2.0.0 | 29,797 | 4/11/2018 | |
| 1.4.4 | 33,285 | 10/17/2018 | |
| 1.4.1 | 66,859 | 11/15/2017 | |
| 1.4.0 | 37,135 | 3/6/2017 | |
| 1.3.1 | 34,493 | 9/13/2016 | |
| 1.3.0 | 40,342 | 8/4/2016 | |
| 1.2.1.1 | 31,984 | 4/26/2016 | |
| 1.2.1 | 27,990 | 4/26/2016 | |
| 1.2.0.3 | 31,606 | 2/9/2016 | |
| 1.2.0 | 32,050 | 2/4/2016 | |
| 1.1.2 | 31,040 | 10/2/2015 | |
| 1.1.1.1 | 29,319 | 8/28/2015 | |
| 1.1.0.1 | 56,139 | 6/18/2015 | |
| 1.1.0 | 27,727 | 6/18/2015 | |
| 1.1.0-pre1 | 2,384 | 5/12/2015 | |
| 1.1.0-pre | 2,487 | 5/12/2015 | |
| 1.0.4.1 | 28,637 | 1/20/2015 | |
| 1.0.0 | 28,222 | 10/9/2014 | |
| 0.9.7.1 | 28,211 | 10/3/2014 | |
| 0.9.7 | 27,120 | 10/3/2014 | |
| 0.9.6 | 27,302 | 10/2/2014 | |
| 0.9.5 | 27,385 | 9/23/2014 | |
| 0.9.5-pre9 | 2,389 | 9/22/2014 | |
| 0.9.5-pre8 | 2,405 | 9/21/2014 | |
| 0.9.5-pre7 | 2,440 | 9/20/2014 | |
| 0.9.5-pre6 | 2,374 | 9/20/2014 | |
| 0.9.5-pre5 | 2,438 | 9/20/2014 | |
| 0.9.5-pre4 | 2,453 | 9/20/2014 | |
| 0.9.5-pre3 | 3,264 | 9/19/2014 | |
| 0.9.5-pre2 | 2,470 | 9/16/2014 | |
| 0.9.5-pre10 | 2,350 | 9/22/2014 | |
| 0.9.5-pre | 2,770 | 9/11/2014 |