Reputation: 1126
I need to use a client-local-db in Silverlight that can store a maximum of 50000 records in a maximum of 20 tables. Are there any free solutions? I have found something in the web but nothing that works.
Upvotes: 0
Views: 452
Reputation: 4515
TurboDB is an embedded database engine that can handle that amount of data easily also on Silverlight in isolated storage. It can run on medium trust but it is not free.
Upvotes: 0
Reputation: 3460
Sterling OODB on Codeplex should be able to handle this. The reference application outlined here has over 500,000 entries in the database so it looks like it should be able to handle your load.
Upvotes: 1
Reputation: 6876
If it is acceptable that the silverlight app can run outside of the browser with elevated trust you could look at using SQL compact edition (http://erikej.blogspot.com/2010/02/access-local-sql-compact-database-from.html). Otherwise you might consider looking at an object database like db40 (http://www.db4o.com/)
Upvotes: 1