You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current project doesn't satisfy the requirements of hexagonal architecture.
Ex: concrete (!) EF DB context (!) is used on the domain layer:
public DealDomain(ApplicationDbContext dbContext)
Which creates strong coupling with DB layer.
The text was updated successfully, but these errors were encountered:
I agree, the first thing I've noticed in the Domain layer is a reference to Persistence, which as per comment from MyEidos ends up as dependency to the EF:
The current project doesn't satisfy the requirements of hexagonal architecture.
Ex: concrete (!) EF DB context (!) is used on the domain layer:
public DealDomain(ApplicationDbContext dbContext)
Which creates strong coupling with DB layer.
The text was updated successfully, but these errors were encountered: