Linq to SQL : Optimizing queries with Sql Server Compact Edition - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:29:09Zhttp://stackoverflow.com/feeds/question/979924http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/979924/linq-to-sql-optimizing-queries-with-sql-server-compact-edition0Linq to SQL : Optimizing queries with Sql Server Compact EditionArielBH2009-06-11T08:11:49Z2009-06-17T20:36:02Z
<p>Hi</p>
<p>I've been using Linq to SQL against Sql Server CE.</p>
<p>Database is read only, so I can have several assumptions.</p>
<p>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.</p>
<p>While it works well for limited queries, directly using Linq to SQL is superior than Linq to Objects when joins where needed.</p>
<p>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.</p>
<p>Any thoughts of how do that? Any more ideas?</p>
<p>Ariel</p>
http://stackoverflow.com/questions/979924/linq-to-sql-optimizing-queries-with-sql-server-compact-edition/1000913#10009130Answer by Fredou for Linq to SQL : Optimizing queries with Sql Server Compact EditionFredou2009-06-16T11:33:56Z2009-06-16T11:33:56Z<p>Did you try <a href="http://msdn.microsoft.com/en-us/library/bb386977.aspx" rel="nofollow">Linq to DataSet</a>?</p>
<p>you can load everything in memory and you can use Linq query</p>
<p>I have no idea if the join will work like you want</p>
http://stackoverflow.com/questions/979924/linq-to-sql-optimizing-queries-with-sql-server-compact-edition/1009395#10093951Answer by marr75 for Linq to SQL : Optimizing queries with Sql Server Compact Editionmarr752009-06-17T20:36:02Z2009-06-17T20:36:02Z<p>It seems like your problem is sql index/foreign key performance vs. collection iterator performance.</p>
<p>Linq to Datasets does offer a way to preserve relationships (more specifically, ADO.net Datasets have a relationship collection) and can enforce primary key, foreign key, and unique constraints. So, their join performance should be similar to Linq to SQL but will run in memory.</p>
<p>From my understanding of lite sql implementations, transactions can have a big impact on performance, so just starting your connection out with</p>
<pre><code>BEGIN TRANSACTION
</code></pre>
<p>could have significant impact if you can leave the connection open for all of your queries. Benchmarking is probably the only sure way to answer this though.</p>