LINQ with SQLite (linqtosql) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T16:44:36Z http://stackoverflow.com/feeds/question/250071 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250071/linq-with-sqlite-linqtosql 7 LINQ with SQLite (linqtosql) Daok 2008-10-30T12:53:59Z 2009-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#250367 0 Answer by websch01ar for LINQ with SQLite (linqtosql) websch01ar 2008-10-30T14:34:08Z 2008-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#250376 3 Answer by stusmith for LINQ with SQLite (linqtosql) stusmith 2008-10-30T14:36:30Z 2008-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#250817 3 Answer by DamienG for LINQ with SQLite (linqtosql) DamienG 2008-10-30T16:26:31Z 2008-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#459256 12 Answer by Ricky AH for LINQ with SQLite (linqtosql) Ricky AH 2009-01-19T21:38:40Z 2009-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#799916 2 Answer by nikolai for LINQ with SQLite (linqtosql) nikolai 2009-04-28T21:32:30Z 2009-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#1276974 0 Answer by Matt Peters for LINQ with SQLite (linqtosql) Matt Peters 2009-08-14T09:46:10Z 2009-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#1680909 0 Answer by fmarceau for LINQ with SQLite (linqtosql) fmarceau 2009-11-05T14:28:51Z 2009-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>