Are there any Database solutions for Windows Runtime other than SQLite?
问题 I have around 1000 - 5000 records and want to save them in a database for a fast access. I used SQLite in Windows Phone Runtime, but it is VERY slow, only 2-3 inserts in a second. I'm wondering if there even exists any other database solutions faster than SQLite? 回答1: I think the answer is - in short - no. Microsoft has dropped the good old LINQ to SQL when they introduced Windows Store apps. That feature remains available only for Silverlight apps. So far SQLite is the only way to go (imo).