Summary:
The use of _dbContext.Set<T>().AddAsync(entity) is wrong based on EF Core documentation. Instead, use .Add(entity).
Explanation:
BlazorHero.CleanArchitecture.Application.Interfaces.Repositories.IRepositoryAsync<T, TId> has a method signature 'AddAsync(T entity)' which is implemented in BlazorHero.CleanArchitecture.Infrastructure.Repositories.RepositoryAsync<T, TId>.
However, EF Core 6 documentation clearly states that .AddAsync() method should not be used by developers:
This method is async only to allow special value generators, such as the one
used by 'Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy.SequenceHiLo',
to access the database asynchronously. For all other cases the non async method
should be used.
Fix:
In IRepositoryAsync<T, TId>, Rename 'AddAsync(T entity)' to 'Add(T entity)'
The implementation of IRepositoryAsync<T, TId>.Add(T entity), in the RepositoryAsync<T, TId>` class must be:
Summary: The use of
_dbContext.Set<T>().AddAsync(entity)
is wrong based on EF Core documentation. Instead, use.Add(entity)
.Explanation: BlazorHero.CleanArchitecture.Application.Interfaces.Repositories.
IRepositoryAsync<T, TId>
has a method signature 'AddAsync(T entity)' which is implemented in BlazorHero.CleanArchitecture.Infrastructure.Repositories.RepositoryAsync<T, TId>
.The implementation is as:
However, EF Core 6 documentation clearly states that .AddAsync() method should not be used by developers:
Fix:
IRepositoryAsync<T, TId>
, Rename 'AddAsync(T entity)' to 'Add(T entity)'The implementation of
IRepositoryAsync<T, TId>.Add(T entity)
, in the RepositoryAsync<T, TId>` class must be:Reference: