Vehlin
Vehlin

Reputation: 57

Entity Framework with Offline Storage

The essence of the situation comes down to the following:

The current system uses Datasets and Diffgrams serialized to XML to deal with the local storage. I am wanting to rewrite the system using Entity Framework for my data access, however the ability to maintain an offline copy of the last few days data is essential as I need to protect against a power cut during a period of no network connectivity.

Any advice on the best approach would be greatly appreciated.

Upvotes: 3

Views: 2900

Answers (1)

AyKarsi
AyKarsi

Reputation: 9685

The Entity Framework won't directly help you with this. The Sync Framework is probably closer to what you are looking for: http://msdn.microsoft.com/en-us/sync/bb887608

Upvotes: 3

Related Questions