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
We always use repositories over interfaces (like ICustomerRepository or IRepository<Customer, Guid>). However, if anyone injected the repository class (like CustomerRepository), this will be a breaking change.
To continue to use the old behaviour, write this in the beginning of your application:
We always use repositories over interfaces (like
ICustomerRepository
orIRepository<Customer, Guid>
). However, if anyone injected the repository class (likeCustomerRepository
), this will be a breaking change.To continue to use the old behaviour, write this in the beginning of your application:
We do this since it improves performance.
The text was updated successfully, but these errors were encountered: