release: IT-631 fix EF repository base bugs #12

Merged
agrynco merged 4 commits from development into main 2026-05-06 12:50:16 +03:00
Showing only changes of commit 9c1da388d8 - Show all commits
+1 -1
View File
@@ -89,7 +89,7 @@ public abstract class BaseEfRepository<TDbContext, TEntity, TEntityId> :
public async Task DeleteAsync(TEntityId id)
{
TEntity? entity = GetById(id);
TEntity? entity = await GetByIdAsync(id);
if (entity != null)
{
DoRemove(entity);