LINQ with SQLite (linqtosql) - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T16:44:36Zhttp://stackoverflow.com/feeds/question/250071http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql7LINQ with SQLite (linqtosql)Daok2008-10-30T12:53:59Z2009-11-05T14:28:51Z
<p>I have a small project that require a storage (I choose SQLite) and I got good result with the <a href="http://sqlite.phxsoftware.com/" rel="nofollow">ADO DLL for .Net for Sqlite</a>.</p>
<p>After the Install, I noticed that it contain a SQLLinq.dll. Before investigating too much effort, and because I haven't see any good example on the web, I would like to know if anyone got any good result with SQLite and LINQ?</p>
<p>*If linqtosql work the same way what ever the SQL database, let me know it. I was interesting with the Dll when I saw it because I never use Linqtosql before and I thought it would be a great opportunity to try,</p>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/250367#2503670Answer by websch01ar for LINQ with SQLite (linqtosql)websch01ar2008-10-30T14:34:08Z2008-10-30T14:34:08Z<p>Assuming you have all the references added, using the correct Data Adapters, LINQ is a viable and good option for you. </p>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/250376#2503763Answer by stusmith for LINQ with SQLite (linqtosql)stusmith2008-10-30T14:36:30Z2008-10-30T14:36:30Z<p>This isn't an answer to your question as such, but as an alternative you could use SQL Compact:</p>
<p><a href="http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx" rel="nofollow">http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx</a></p>
<p>Which has good LINQ-to-SQL support, and (despite the name) is great for desktop apps with small storage requirements.</p>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/250817#2508173Answer by DamienG for LINQ with SQLite (linqtosql)DamienG2008-10-30T16:26:31Z2008-10-30T16:26:31Z<p>LINQ to SQL only supports SQL Server/Compact however it is possible the SQLite people have written their own LINQ provider given the name of the assembly.</p>
<p>If that's the case you would be able to use the LINQ query syntax by adding a reference to it but you wouldn't get LINQ to SQL specific features such as the DataContext/designer/SQL Metal/Column attributes/EntitySet/EntityRef etc.</p>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/459256#45925612Answer by Ricky AH for LINQ with SQLite (linqtosql)Ricky AH2009-01-19T21:38:40Z2009-01-19T21:38:40Z<p>I've recently discovered <a href="http://code.google.com/p/dblinq2007/" rel="nofollow">DBLinq</a>, which supports SQLite among other DB:</p>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/799916#7999162Answer by nikolai for LINQ with SQLite (linqtosql)nikolai2009-04-28T21:32:30Z2009-04-28T22:49:27Z<p>I my recent project I have used SQlite
to save application data.
It worked great for me.
I could retrieve, filter and save data using only
LINQ and C# code without using any
SQL constructs.</p>
<p>Here you can download my tiny Visual Studio 2008 test project,
where the C# code retrieves data from SQlite file database:</p>
<p><a href="http://www.nik.xail.net/TestSQlite.rar" rel="nofollow">http://www.nik.xail.net/TestSQlite.rar</a></p>
<p>(copy the link and past it to you browser address field)</p>
<ul>
<li>Launch the program TestSQlite.exe to see some data retrieved from DB.</li>
<li>Get a free SQlite GUI administration tool to easily create new tables, columns etc.</li>
<li>Explore the code </li>
</ul>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/1276974#12769740Answer by Matt Peters for LINQ with SQLite (linqtosql)Matt Peters2009-08-14T09:46:10Z2009-08-14T09:46:10Z<p>this is a good linq to sqlite..</p>
<p><a href="http://www.devart.com/dotconnect/sqlite/" rel="nofollow">http://www.devart.com/dotconnect/sqlite/</a></p>
http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql/1680909#16809090Answer by fmarceau for LINQ with SQLite (linqtosql)fmarceau2009-11-05T14:28:51Z2009-11-05T14:28:51Z<p>From my own experience, Microsoft SQL Compact Framework is a REAL NO-GO. It is REALLY FREAKING slow and its Query Analyzer is just really poor. I had to ask my team to rewrite all the plumbing code of my Windows Mobile component to get rid of the awful performances of SQL CE.</p>