foundationdb-dotnet-client icon indicating copy to clipboard operation
foundationdb-dotnet-client copied to clipboard

C#/.NET Binding for FoundationDB Client API

Results 27 foundationdb-dotnet-client issues
Sort by recently updated
recently updated
newest added

We live in interesting times: https://learn.microsoft.com/en-us/dotnet/aspire/get-started/aspire-overview Documentation on how to create a new component is a bit scarce for the moment, but I was able to create a first prototype...

Hi, I have a few designs to implement the same functionality in my code. One involves using a tuple and storing everything in the same directory. Like Employees `("/employees/IT/","employee1"):{employeeDetails} ("/employees/Marketing/","employee2"):{employeeDetails}`...

Is there a feature of secondary index in Doxense. If not, is there any plan of creating this feature??

A quick look at the [current documentation for 7.2](https://apple.github.io/foundationdb/api-c.html) shows that the following native methods are not implemented currently: - [x] `fdb_add_network_thread_completion_hook` - [x] `fdb_future_get_key_array` - [x] `fdb_database_open_tenant` - [...

api
native

We need to add support for Tenants (https://apple.github.io/foundationdb/tenants.html) and the associated `FDBTenant` API (https://apple.github.io/foundationdb/api-c.html#c.FDBTenant) If I understand correctly, it is an abstraction that is inserted between the Database and the...

enhancement
api
native

Looking at bindings for other languages, the transaction options are usually accessed via an "Options" property or field, so would look something like this in c# ```csharp tr.Options.Timeout = 10;...

enhancement
api

The `fdb_future_get_cluster` API has been removed since API level 610, and should probably removed completely. Doing so would imply supporting only API levels 610 and up, and dropping support for...

api
native