LINQ and Data Persistence
The persistence mechanism within LINQ can bite you if you aren’t careful. The framework will persist a local copy of the data, so be careful when making database edits directly as this can cause the data in the application to become out of sync with the data LINQ believes is available. It is necessary to recycle the...
read more