Use CouchDB with .NET

前端 未结 14 2357
渐次进展
渐次进展 2020-12-12 13:46

Can .NET (managed code) read and write to CouchDB?

I would like to build a part of my project that does document management using CouchDB

相关标签:
14条回答
  • 2020-12-12 14:32

    Very easy to use .NET API for CouchDB included into WDK10 that you can grab from http://code.google.com/p/skitsanoswdk/ it is very flexible and allows you to deal with your data on objects and pure json level.

    0 讨论(0)
  • 2020-12-12 14:32

    One more - CouchDBClient: https://github.com/ttutisani/CouchDBClient

    Disclaimer: I'm the author.

    I tried to make CouchDBClient more friendly to work with custom objects - that's what usually applications store in the database.

    Back when I started writing this framework, all others that I found and tried were making an impression of non-standardized method signatures (named using various conventions and harder to guess what they did), not unified interfaces (some operations around string docs, while others around json docs), not very flexible (some worked only with strings, others only with objects), or not very abstract (had to know CouchDB REST API first to use them correctly). I'm assuming and hoping they have matured since then, but at least this one is designed up to my taste.

    I'm hoping that CouchDBClient can create a feeling of comfortable abstraction without worrying about underlying API too much, and just focusing on your application, and how it stores and retrieves objects it needs.

    0 讨论(0)
提交回复
热议问题