Are there any object databases for .NET or with bindings for .NET?
closed as not constructive by Bill the Lizard♦ Aug 7 '12 at 12:16
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Wikipedia lists some. You could also consider using Bamboo.Prevalence - a .NET persistence engine similar to Prevayler for Java. That is not a database in a usual sense (more on this here), but could be appropriate in some cases. |
|||
|
|
Take a look at 100% .NET object database - siaqodb ( http://siaqodb.com ) |
|||
|
|
|
Majority of object databases are not really .NET databases, as they are written in Java, and then converted into .NET (C#) by some kind of converter. That results in really poor performing code. You can look into Eloquera Database, which is pure .NET-based object database with SQL, and performing from 10 to 1000 times faster than db4o. |
|||
|
|
|
Intersystems Caché also has a managed .NET provider - can't speak from experience about its quality and usability, though: http://www.intersystems.com/cache/technology/components/net/index.html Marc |
|||
|
|
|
STSdb is coded in 100% pure managed C#. This allows its use under different .NET platforms like .NET Framework and Mono. db4o works on both Java and .NET. |
||||
|
|
|
Databases for .NET are also listed in SharpToolbox.com's DBMS category. |
|||
|
|