Couchbase.Lite.Enterprise
3.2.0-beta.2
Prefix Reserved
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.6.2
This package targets .NET Framework 4.6.2. The package is compatible with this framework or higher.
This is a prerelease version of Couchbase.Lite.Enterprise.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Couchbase.Lite.Enterprise --version 3.2.0-beta.2
NuGet\Install-Package Couchbase.Lite.Enterprise -Version 3.2.0-beta.2
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="Couchbase.Lite.Enterprise" Version="3.2.0-beta.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Couchbase.Lite.Enterprise --version 3.2.0-beta.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Couchbase.Lite.Enterprise, 3.2.0-beta.2"
#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.
// Install Couchbase.Lite.Enterprise as a Cake Addin #addin nuget:?package=Couchbase.Lite.Enterprise&version=3.2.0-beta.2&prerelease // Install Couchbase.Lite.Enterprise as a Cake Tool #tool nuget:?package=Couchbase.Lite.Enterprise&version=3.2.0-beta.2&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | 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 was computed. 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 was computed. net8.0-android was computed. net8.0-android34.0 is compatible. net8.0-browser was computed. net8.0-ios was computed. net8.0-ios17.2 is compatible. net8.0-maccatalyst was computed. net8.0-maccatalyst17.2 is compatible. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net8.0-windows10.0.19041 is compatible. |
.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 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. monoandroid10.0 is compatible. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. xamarinios10 is compatible. |
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.
-
.NETFramework 4.6.2
- Couchbase.Lite.Enterprise.Support.NetDesktop (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- DerConverter (>= 3.0.0.82)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
- System.Collections.Immutable (>= 6.0.0)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.0.0)
-
.NETStandard 2.0
- Couchbase.Lite.Extensions (>= 1.0.0)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
- System.Collections.Immutable (>= 6.0.0)
-
MonoAndroid 10.0
- Couchbase.Lite.Enterprise.Support.Android (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- DerConverter (>= 3.0.0.82)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
- System.Collections.Immutable (>= 6.0.0)
- Xamarin.Essentials (>= 1.7.4)
-
net6.0
- Couchbase.Lite.Enterprise.Support.NetDesktop (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
-
net8.0-android34.0
- Couchbase.Lite.Enterprise.Support.Android (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- DerConverter (>= 3.0.0.82)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
-
net8.0-ios17.2
- Couchbase.Lite.Enterprise.Support.iOS (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- DerConverter (>= 3.0.0.82)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
-
net8.0-maccatalyst17.2
- Couchbase.Lite.Enterprise.Support.iOS (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- DerConverter (>= 3.0.0.82)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
-
net8.0-windows10.0.19041
- Couchbase.Lite.Enterprise.Support.NetDesktop (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
-
Xamarin.iOS 1.0
- Couchbase.Lite.Enterprise.Support.iOS (= 3.2.0-beta.2)
- Couchbase.Lite.Extensions (>= 1.0.0)
- DerConverter (>= 3.0.0.82)
- Newtonsoft.Json (>= 13.0.1)
- SerialQueue (>= 2.1.0)
- SimpleInjector (>= 5.2.1 && < 6.0.0)
- System.Collections.Immutable (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Couchbase.Lite.Enterprise:
Repository | Stars |
---|---|
couchbase/couchbase-lite-net
A lightweight, document-oriented (NoSQL), syncable database engine for .NET
|
Version | Downloads | Last updated | |
---|---|---|---|
3.2.0 | 9,833 | 8/30/2024 | |
3.2.0-beta.2 | 87 | 5/16/2024 | |
3.1.9 | 4,980 | 8/9/2024 | |
3.1.7 | 24,190 | 5/1/2024 | |
3.1.6 | 20,543 | 3/6/2024 | |
3.1.3 | 12,576 | 11/16/2023 | |
3.1.1 | 61,146 | 7/18/2023 | |
3.1.0 | 2,526 | 4/27/2023 | |
3.0.15 | 1,551 | 11/6/2023 | |
3.0.12 | 26,359 | 6/26/2023 | |
3.0.8 | 18,990 | 2/8/2023 | |
3.0.2 | 21,528 | 8/2/2022 | |
3.0.0 | 24,159 | 2/22/2022 | |
3.0.0-beta02 | 2,581 | 10/19/2021 | |
3.0.0-beta01 | 437 | 9/21/2021 | |
2.8.6 | 58,142 | 8/3/2021 | |
2.8.4 | 42,376 | 3/2/2021 | |
2.8.2 | 90,304 | 11/20/2020 | |
2.8.0 | 1,778 | 9/30/2020 | |
2.7.1 | 21,799 | 4/17/2020 | |
2.7.0 | 13,869 | 1/16/2020 | |
2.6.4 | 701 | 2/11/2020 | |
2.6.0 | 3,956 | 8/27/2019 | |
2.5.3 | 4,047 | 7/31/2019 | |
2.5.2 | 735 | 7/3/2019 | |
2.5.0 | 1,398 | 4/30/2019 | |
2.1.5 | 729 | 5/23/2019 | |
2.1.2 | 5,341 | 11/16/2018 | |
2.1.1 | 5,472 | 10/5/2018 | |
2.1.0 | 1,614 | 8/30/2018 | |
2.0.3 | 1,113 | 6/5/2018 | |
2.0.2 | 1,096 | 6/1/2018 | |
2.0.0.1 | 1,193 | 4/12/2018 | |
2.0.0 | 1,283 | 4/12/2018 |