vote up 0 vote down star

I've setup a local cache of data in my ASP.NET app. I've got the app reading/writing to the local SDF file using the Entity framework.

When I issue the sync command:

DataCacheSyncAgent syncAgent = new DataCacheSyncAgent();
Microsoft.Synchronization.Data.SyncStatistics syncStats = syncAgent.Synchronize();

The sync agent pulls down all the changes that are on the server. In fact, I can even see those changes reflected in my app.

However, if I browse the local .SDF file, the data changes are not there. Worse yet, if I restart my app, the changes that were downloaded are lost.

It's like somehow the changes get saved in RAM, and the Entity framework queries those instead of the .SDF file.

Is there something else I'm supposed to do to actually "commit" the changes to disk?

flag

64% accept rate
1  
You can scratch this. I believe the problem is simply me not realizing that my local app's SDF file is re-created with each run. – Chu Oct 20 at 13:30

1 Answer

vote up 0 vote down check

Ok, problem was simply that my local app file was being copied to the debug folder with each run.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.