views:

60

answers:

2

Anyone have any recommendations for a non-relational/partially-relational DB with a .NET API?

+1  A: 

I don't have any personal experience with it, but you might check out MongoDB which has drivers in C# etc.

See this blog post for some info: http://odetocode.com/Blogs/scott/archive/2009/10/13/experimenting-with-mongodb-from-c.aspx

Jeff S
A: 

Just hear about Raven DB on a podcast (Herding Code 83). I don't know much more, but there are questions tagged ravendb.

Raven is an Open Source (with a commercial option) document database for the .NET/Windows platform. Raven offers a flexible data model design to fit the needs of real world systems. Raven stores schema-less JSON documents, allow you to define indexes using Linq queries and focus on low latency and high performance.

Kevin Hakanson