In this chapter, you’re going to build on what you’ve learned in the previous seven chapters. Up to this point, you have created a database using the code-first approach, and now you are ready to start working with the data in a more robust fashion. In other words, since the database structure is in place, now it’s time to learn how to leverage it for enterprise applications.
It’s time to learn LINQ
Now that the inventory manager data is modeled and you have the InventoryDBContext in place to get the ...