How do I use SQL Server Compact to store per-user application data? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:32:06Z http://stackoverflow.com/feeds/question/328294 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/328294/how-do-i-use-sql-server-compact-to-store-per-user-application-data 0 How do I use SQL Server Compact to store per-user application data? Stewart Johnson 2008-11-30T01:13:02Z 2008-12-01T04:44:56Z <p>Normally I use SQLite databases to store data for an application on a per-user basis: I include a blank version of the database in my app and copy it to the user's app data directory on first run, and that's where I keep all their personal data related to the app.</p> <p>Is it possible to do the same thing with SQL Server Compact edition? I thought I might give that DB a go to see if the Visual Studio support is better.</p> <p>I can see how to add a SSCE database to my project, but I assume that means it'll be a single version of the DB for all users -- not what I want. Is it possible to create a per-user copy of the database?</p> <p><strong>Edit:</strong> I just noticed that it's not possible to create LINQ-to-SQL classes using the designer in Visual Studio 2008 using SSCE anyway, which is pretty much the whole reason I was considering SSCE. Am I missing something?</p> <p><strong>Edit2:</strong> So I can use SQLMetal to generate the DBML and classes -- that'll do the job though I would've preferred using the designer.</p>