diff --git a/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/IRepository.cs b/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/IRepository.cs
index ec79597396..f1136c4ea2 100644
--- a/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/IRepository.cs
+++ b/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/IRepository.cs
@@ -53,7 +53,7 @@ namespace Volo.Abp.Domain.Repositories
///
/// Deletes many entities by the given .
///
- /// Please note: This may cause major performance problems if there are too many entities returned for a
+ /// Please note: This may cause major performance problems if there are too many entities returned for a
/// given predicate and the database provider doesn't have a way to efficiently delete many entities.
///
///
@@ -68,18 +68,10 @@ namespace Volo.Abp.Domain.Repositories
bool autoSave = false,
CancellationToken cancellationToken = default
);
-
- ///
- /// This is an alias for
- Task DeleteManyAsync(
- [NotNull] Expression> predicate,
- bool autoSave = false,
- CancellationToken cancellationToken = default
- );
}
public interface IRepository : IRepository, IReadOnlyRepository, IBasicRepository
where TEntity : class, IEntity
{
}
-}
\ No newline at end of file
+}
diff --git a/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/RepositoryBase.cs b/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/RepositoryBase.cs
index 5ba522ef00..0b32d54d45 100644
--- a/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/RepositoryBase.cs
+++ b/framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/RepositoryBase.cs
@@ -85,9 +85,6 @@ namespace Volo.Abp.Domain.Repositories
public abstract Task DeleteAsync(Expression> predicate, bool autoSave = false, CancellationToken cancellationToken = default);
- public virtual Task DeleteManyAsync(Expression> predicate, bool autoSave = false, CancellationToken cancellationToken = default)
- => DeleteAsync(predicate, autoSave, cancellationToken);
-
protected virtual TQueryable ApplyDataFilters(TQueryable query)
where TQueryable : IQueryable
{