I was wondering is their a dll library for no-sql written entirely in c# that can create databases for use on the xbox 360?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
BerkeleyDB is a KeyValue embedded database, essentially the NoSQL equivalent of SQLite. Here is a C# Tutorial.
However, I strongly suggest finding an alternative solution to this. Unless you have a ton of data you’re better off holding all your objects in RAM and persisting on a need basis with a JSON, XML, or whatever you want serializer. LINQ makes it incredibly easy to query in-memory objects the same way you’d query a database.