Couchbase.Lite.Enterprise.Support.iOS
3.2.0
Prefix Reserved
dotnet add package Couchbase.Lite.Enterprise.Support.iOS --version 3.2.0
NuGet\Install-Package Couchbase.Lite.Enterprise.Support.iOS -Version 3.2.0
<PackageReference Include="Couchbase.Lite.Enterprise.Support.iOS" Version="3.2.0" />
paket add Couchbase.Lite.Enterprise.Support.iOS --version 3.2.0
#r "nuget: Couchbase.Lite.Enterprise.Support.iOS, 3.2.0"
// Install Couchbase.Lite.Enterprise.Support.iOS as a Cake Addin #addin nuget:?package=Couchbase.Lite.Enterprise.Support.iOS&version=3.2.0 // Install Couchbase.Lite.Enterprise.Support.iOS as a Cake Tool #tool nuget:?package=Couchbase.Lite.Enterprise.Support.iOS&version=3.2.0
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-ios17.2 is compatible. net8.0-maccatalyst17.2 is compatible. |
Xamarin.iOS | xamarinios is compatible. xamarinios10 is compatible. |
-
net8.0-ios17.2
- No dependencies.
-
net8.0-maccatalyst17.2
- No dependencies.
-
Xamarin.iOS 1.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Couchbase.Lite.Enterprise.Support.iOS:
Package | Downloads |
---|---|
Couchbase.Lite.Enterprise
A lightweight, document-oriented (NoSQL), syncable database engine for .NET |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.2.0 | 12,800 | 8/30/2024 | |
3.2.0-beta.2 | 442 | 5/16/2024 | |
3.1.9 | 6,111 | 8/9/2024 | |
3.1.7 | 27,628 | 5/1/2024 | |
3.1.6 | 18,131 | 3/6/2024 | |
3.1.3 | 9,688 | 11/16/2023 | |
3.1.1 | 62,889 | 7/18/2023 | |
3.1.0 | 2,761 | 4/27/2023 | |
3.0.15 | 160 | 11/6/2023 | |
3.0.12 | 22,419 | 6/26/2023 | |
3.0.8 | 18,780 | 2/8/2023 | |
3.0.2 | 690 | 8/2/2022 | |
3.0.0 | 6,955 | 2/22/2022 | |
3.0.0-beta02 | 302 | 10/19/2021 | |
3.0.0-beta01 | 452 | 9/21/2021 | |
2.8.6 | 42,684 | 8/3/2021 | |
2.8.4 | 31,912 | 3/2/2021 | |
2.8.2 | 86,814 | 11/20/2020 | |
2.8.0 | 1,016 | 9/30/2020 | |
2.7.1 | 15,440 | 4/17/2020 | |
2.7.0 | 8,737 | 1/16/2020 | |
2.6.4 | 655 | 2/11/2020 | |
2.6.0 | 1,243 | 8/27/2019 | |
2.5.3 | 5,650 | 7/31/2019 | |
2.5.2 | 794 | 7/3/2019 | |
2.5.0 | 867 | 4/30/2019 | |
2.1.5 | 863 | 5/23/2019 | |
2.1.2 | 4,604 | 11/16/2018 | |
2.1.1 | 4,344 | 10/5/2018 | |
2.1.0 | 1,338 | 9/7/2018 |