I am following the bouncing ball on using localDB via some MSDN tutorials located at
Walkthrough: Creating a Local Database File in Visual Studio and Walkthrough: Connecting to Data in a Local
Database File (Windows Forms)
When I complete the second tutorial and run the windows forms app, it places a copy of the database file (sampledatabase.mdf) in
both the root directory for the project and under the \bin\debug directory of the project.
Why are the two files being created and which one is the app using. When I run the app, it doesn't appear to update either, but the last modified date changed for both?
The connection string gives no hint as it just point to |DataDirectory|\SampleDataBase.mdf
Heavens knows how D ...
Go to the complete details ...