예제 #1
0
 public static Task <bool> AnyAsync <T>(this IQueryable <T> queryable, IEntityRepository <T> entityRepository, CancellationToken cancellationToken = default)
 {
     return(entityRepository.AnyAsync(queryable, cancellationToken));
 }