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

link

59% accept rate
feedback

9 Answers

up vote 9 down vote accepted

Take a look at the SharpCouch utility class.

It is a simple wrapper class for the CouchDB HTTP API.

link
using LitJson; // ? – stimpy77 Aug 20 '10 at 23:53
feedback

Its a late answer, but do check out Hammock. It's active and going into production use on several projects soon and is receiving regular updates and fixes. Besides basic object persistence, Hammock gives you:

  • True POCO. You don't even need an 'id' property; Hammock tracks that internally.
  • Robust support for views, including an easy to use fluent API that both generates AND executes views, and support for creating custom map/reduce views.
  • Attachments support.
  • A generic Repository<> class that helps bring your queries/views (i.e. _Design doc) together with your c# application code. Repositories are responsible for maintaining _design docs, and this helps keep CouchDB views from feeling like 'stored procs'.
  • A full unit test suite. This is not prototype software.
link
1  
Thank you, relax-net looks promising. – ximian Dec 30 '09 at 21:26
feedback

Given that you generally communicate with CouchDB over REST and JSON, I'd imagine it wouldn't be too hard to use JSON.NET and the normal WebClient/HttpWebRequest classes to do it. I haven't tried it myself, mind you...

link
Commenting a little off topic here - how has your experience been with JSON.NET? Doesn't .net 3.5 sp1 have methods to serialize data to JSON? – ximian Jun 26 '09 at 17:07
I haven't used the built-in serializer, and I've only used JSON.NET a little bit - but the latter has worked fine with the StackOverflow JSON. – Jon Skeet Jun 26 '09 at 17:16
1  
JSON.NET's LINQ support is very handy if you want to parse JSON without deserializing it into a fixed C# class - it's fairly similar to using LINQ-to-XML. – Joel Mueller Jun 26 '09 at 17:47
feedback

Keep an eye on Ottoman an open-source project written in C#. It is still in heavy development, but I wanted to point it out as an option for projects in the planning stages. I will update this post as it gets closer to completion. You can view the source on github. Read the README to see examples and what is possible with the current version.

  • Unlike SharpCouch, which uses strings heavily, Ottoman uses generics for automatic serialization and desrialization for mapping an object from a JSON string and vice versa. All this without your objects needing to inherit off an interface or base class.
  • It uses Json.Net underneath to handle the JSON serialization and deserialization.
  • Maps the RESTFul error codes that CouchDB returns into Exceptions.
  • Planned Feature: Id generators for generating Id's for the objects being persisted
  • Planned Feature: Implicit Offline Optimistic Lock via Document Revisions, Ottoman will use an Identity Map to keep track for you and will throw an exception when a conflict occurs.
  • Planned Feature: It will be Mono compatible.
  • Planned Feature: This is down the road, but I do plan on having LINQ expressions for Map/Reduce functions which you express to CouchDB using JavaScript.

It is a fairly new project, but very active. Of course, I'm a bit biased also. ;-)

link
feedback

Yes.

See here for instructions on installing CouchDB on windows.

Here is a link to the getting started with C# wiki article. There is a link to a .Net wrapper in that article. It would be pretty easy to roll your own as well.

link
1  
I want to do a little update here: I installed couchDb on my windwos laptop, and it was very easy. Just to go couchbase site, download and install. You will be playing with futon in notime – NicoGranelli Jul 11 '11 at 2:55
@NicoGranelli, thanks for the update. Couchdb on windows has come a long way in the last two years. – ScottS Jul 11 '11 at 16:20
Found this question in a search, used the link from the wiki article and I ended up using LoveSeat – phasetwenty Jan 12 at 3:46
feedback

also take a look at divan - a light-weight wrapper for the cdb api

link
I need to store POCO in couchDB. I tested Divan, DreamSeat, LoveSeat, Relax. I had problems with those except Divan. I am on VS 2010 + .NET 4. – PokerIncome.com Oct 4 '11 at 0:58
feedback

I have used JSON.NET in conjunction with the MS REST starter kit's http client class to integrate to CouchDB and it works really well.

link
feedback

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.

link
feedback

Check out Relax http://www.sharplearningcurve.com/wiki/Symbiote-Relax.ashx. Relax is a ".Net API abstraction of CouchDB's (excellent) RESTful API. It includes a repository-based interface for document interaction and a server controller for administrative type tasks."

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.