Hi
I've been using Linq to SQL against Sql Server CE.
Database is read only, so I can have several assumptions.
In order to refrain from accessing the file system, my initial approach was to cache needed entities to application memory and using linq to objects against them.
While it works well for limited queries, directly using Linq to SQL is superior than Linq to Objects when joins where needed.
Back to starting point, I want to optimize my performances, my thought now is to enforce loading the entire file to the RAM, and using Linq to SQL against it.
Any thoughts of how do that? Any more ideas?
Ariel