LoveSeat icon indicating copy to clipboard operation
LoveSeat copied to clipboard

Bringing CouchDB and .NET little closer

Results 22 LoveSeat issues
Sort by recently updated
recently updated
newest added

At https://www.nuget.org/packages/LoveSeat#versions-body-tab, version 1.0.1 seems to be the only version published, though https://www.nuget.org/stats/packages/LoveSeat?groupby=Version also lists stats for version 1.0.0. In any case, please tag both versions in Git, so we...

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.8 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.8 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 6.0.8 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

While the [`/db/_bulk_docs` API documentation](http://docs.couchdb.org/en/stable/api/database/bulk-api.html#inserting-documents-in-bulk) refers that: > **The return type from a bulk insertion will be 201 Created**, with the content of the returned structure indicating specific success or...

Hi! I had created a discussion about .NET Core support (Issue #68). I hope this is a valid contribution. Thanks!

Hi @soitgoes ! Congratulations for LoveSeat project, It's easy and intuitive project. I need support to .NET Core. We already solved it in a fork and I would like to...

I see that LoveSeat supports View, List, and Show functions, but does not support [Update functions](http://couchdb.readthedocs.io/en/latest/couchapp/ddocs.html#update-functions)? It would be great if they were supported by LoveSeat as well!

This is how I am trying to connect to couchdb instance and fetch a list - CouchClient cl = new CouchClient("localhost", 5984, "uname", "pwd", false, AuthenticationType.Basic); IListResult ilr = cl.GetDatabase("db").List("l",...

Ensures that attachment filenames are url-encoded by running them through `HttpUtility.UrlEncode`. This allows them to be round-tripped accurately. I've added a unit test to cover this scenario. Resolves #59 _Note:...