This chapter covers some of the more advanced topics of using ASP.NET MVC with Entity Framework, including how to code asynchronous database access code, how to deal with concurrent database updates where conflicting data edits may occur, and how to manually run SQL queries rather than using those generated by Entity Framework.
Note
If you want to follow along with the code in this chapter, you must either have completed Chapter 9 or download Chapter 9’s source code from www.apress.com as a starting point.
Asynchronous Database Access
In order to keep this ...