This may sound stupid , but I had a SQL Lite database in a Winforms project, and I was editing it as I debugged my application, but every time I looked at the actual data in the table I had just edited using the Visual Studio (3.5) preview data function, the data I had just added was nowhere to be found.
It turned out that when I debugged, Visual Studio copied the database over the bin/debug/App_Data/db.mdf file, and whatever changes I made from debug run to debug run were lost.
I just didn’t know it worked that way.
