maliming
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Repositories/RepositoryAsyncExtensions.cs
|
|
|
@ -34,6 +34,7 @@ namespace Volo.Abp.Domain.Repositories |
|
|
|
var queryable = await repository.GetQueryableAsync(); |
|
|
|
return await repository.AsyncExecuter.AnyAsync(queryable, cancellationToken); |
|
|
|
} |
|
|
|
|
|
|
|
public static async Task<bool> AnyAsync<T>( |
|
|
|
[NotNull] this IReadOnlyRepository<T> repository, |
|
|
|
[NotNull] Expression<Func<T, bool>> predicate, |
|
|
|
|