mycouch icon indicating copy to clipboard operation
mycouch copied to clipboard

MyCouch is the asynchronous CouchDB client for .NET

Results 12 mycouch issues
Sort by recently updated
recently updated
newest added

Hi, Thanks for this library, it is a live safer. But I stumbled onto this bug: I have the following pseudo view: ```js function (doc) { emit(doc._id, "test"); } ```...

Add limit prevalidation for the _search endpoint

I'm using MyCouch to manage CouchDB databases and their schemas, and have written simple classes for design docs, users, security, etc, that I'm serializing via a `MyCouchStore` object. But that...

Hi there! I'd like to insert 10k rows to couchdb, and therefore I am using the bulk API: ```csharp var entities = /**/; var docs = entities.Select(myCouchClient.DocumentSerializer.Serialize).ToArray(); var bulkRequest =...

I think null values in object should be serialized as null value in object, instead the DocumentJsonWriter.cs implements WriteNull() like this: ``` public override void WriteNull() { base.WriteRaw(string.Empty); } ```...

Hi, are update functions somehow supported? https://docs.couchdb.org/en/latest/ddocs/ddocs.html#update-functions

Related to #188, but when using `BulkRequest.Delete` it does not escape the ID field. https://github.com/danielwertheim/mycouch/blob/6367571c2560b77be1e9d49edc1b59245268be6d/source/projects/MyCouch/Requests/BulkRequest.cs#L73-L81 Based on the current design of the class I was unable to find a clean...

When transferring large attachments (e.g. files or HTTP POST payload in an ASP.NET application), it can be favorable to use Streams instead of creating a local `byte[]` with the entire...

I have the following problem. I have a .NET 4.7.2 Windows Application that connects to a couchdb. Every customer has his own database(s) named like `client/customername/dbname` Since the DbName has...