I migrated a SQL Server Express database to SQLite (using a utility I downloaded from here).
Now I want to add this SQLite database to a C# project in Visual Studio.
I cannot find information on where that should be stored, exactly. There is what seems to be a pretty good article here, about the process, but it's kind of vague as to just where to put the db. It says, "The first step is to copy your database in to the Visual Studio project and, from the Properties window, set the Build action to Content."
So is there a specific place where the database file should, or must, be placed?
Also, can I leave the database there while querying it from within the application code, or does it need to be copied to the user's ApplicationData.Current.LocalFolder?
That is what seems to be at least strong implied by that article, which shows code for doing so.