mandes
mandes

Reputation: 105

how to connect couchdb with web api core

want to connect to a CouchDb databse from asp.net core web api , but am having trouble finding the code to do so.

Can anyone help me with the code to do that? What is the 'normal' way of doing that?

Cheers!

Upvotes: 7

Views: 2740

Answers (2)

I had the same need and after evaluating the existing options, I created a set of mechanisms that met the requirements that I had to meet and made available on github and the nuget package.

The explanation of how to use it is on github.

Below is the link in case you want to take a look.

In time, to prevent someone from coming here and deleting my answer, I inform you that I have no intention of promoting what I did with this answer, just suggesting that you evaluate it and if it is your case, feel free to use it.

Link: Nuget Package | Github

An example webapi core project follows how to make this connection and perform data operations with this lib: webapi core sample

Upvotes: 0

Juanjo Rodriguez
Juanjo Rodriguez

Reputation: 2131

You can use the MyCouch Library for .Net https://github.com/danielwertheim/mycouch

Upvotes: 2

Related Questions