Performing Asynchronous Operations Using Entity Framework

Asynchronous programming involves executing operations in the background so that the main thread can continue its own operations. This way the main thread can keep the user interface responsive while the background thread is processing the task at hand. .NET framework introduced the async and await keywords that simplify asynchronous programming. Entity Framework 6.0 also supports asynchronous operations for querying and saving of the data. This article discusses the basics of using asynchronous operations of Entity Framework in desktop as well as web applications.

http://www.binaryintellect.net/articles/879473a3-af55-485b-bbab-6cceb1713cac.aspx

No Comments