In this chapter, we are going to talk in detail about two critical patterns that exist and that should be on the radar of every database developer, whether we are using Entity Framework or not. The good news is that EF actually handles a lot of the unit of work (UoW) and repository (repo) work for us. The bad news is that EF is sometimes not exactly what we need when implementing our solutions.
To learn more about these patterns and how we can work with them, we’ll start this chapter by discussing each pattern and why they are important, and then we’ll finish the chapter ...