Edition 0 Updated to asp. Net core 0


Using a custom repository versus using EF DbContext directly



Yüklə 11,82 Mb.
Pdf görüntüsü
səhifə217/288
tarix12.07.2023
ölçüsü11,82 Mb.
#136458
1   ...   213   214   215   216   217   218   219   220   ...   288
Using a custom repository versus using EF DbContext directly 
The Entity Framework DbContext class is based on the Unit of Work and Repository patterns and can 
be used directly from your code, such as from an ASP.NET Core MVC controller. The Unit of Work and 
Repository patterns result in the simplest code, as in the CRUD catalog microservice in 
eShopOnContainers. In cases where you want the simplest code possible, you might want to directly 
use the DbContext class, as many developers do. 
However, implementing custom repositories provides several benefits when implementing more 
complex microservices or applications. The Unit of Work and Repository patterns are intended to 
encapsulate the infrastructure persistence layer so it is decoupled from the application and domain-
model layers. Implementing these patterns can facilitate the use of mock repositories simulating 
access to the database. 
In Figure 7-18, you can see the differences between not using repositories (directly using the EF 
DbContext) versus using repositories, which makes it easier to mock those repositories. 


249 
CHAPTER 6 | Tackle Business Complexity in a Microservice with DDD and CQRS Patterns 
Figure 7-18. Using custom repositories versus a plain DbContext 
Figure 7-18 shows that using a custom repository adds an abstraction layer that can be used to ease 
testing by mocking the repository. There are multiple alternatives when mocking. You could mock just 
repositories or you could mock a whole unit of work. Usually mocking just the repositories is enough, 
and the complexity to abstract and mock a whole unit of work is usually not needed. 
Later, when we focus on the application layer, you will see how Dependency Injection works in 
ASP.NET Core and how it is implemented when using repositories. 
In short, custom repositories allow you to test code more easily with unit tests that are not impacted 
by the data tier state. If you run tests that also access the actual database through the Entity 
Framework, they are not unit tests but integration tests, which are a lot slower. 
If you were using DbContext directly, you would have to mock it or to run unit tests by using an in-
memory SQL Server with predictable data for unit tests. But mocking the DbContext or controlling 
fake data requires more work than mocking at the repository level. Of course, you could always test 
the MVC controllers. 

Yüklə 11,82 Mb.

Dostları ilə paylaş:
1   ...   213   214   215   216   217   218   219   220   ...   288




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin