Robert Co
Robert Co

Reputation: 1715

Object persistence without ORM or DB Engine

I learned to love how LINQ enables set operations on collections. I'm not saying that I plan to shun traditional RDMBS, because I do need it for reporting. There are NoSQL alternatives out there, but they seem to all need to fire up a separate service.

What I looking for is something local where a DLL can create a database and perform CRUD on it. As mentioned, I'm not going to report out of this, just internal data store. The main application that will be using it is in C#.

I'm hoping that someone can give me a lead. If not, if there is anyone willing, we can start a open-source project for it. I'm not interested in commercial products.

Thanks,

Upvotes: 1

Views: 141

Answers (1)

marc_s
marc_s

Reputation: 754388

You can run RavenDB in embedded mode inside your .NET application - no need for external services or anything.

And RavenDB supports Linq....

Upvotes: 2

Related Questions