You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>/// This method checks whether the database table contains any record./// and returns <see cref="Task"/> of <see cref="bool"/>./// </summary>/// <typeparam name="TEntity">The type of the entity.</typeparam>/// <param name="cancellationToken"> A <see cref="CancellationToken"/> to observe while waiting for the task to complete.</param>/// <returns>Returns <see cref="bool"/>.</returns>Task<bool>ExistsAsync<TEntity>(CancellationTokencancellationToken=default)whereTEntity:class;/// <summary>/// This method takes a predicate based on which existence of the entity will be determined/// and returns <see cref="Task"/> of <see cref="bool"/>./// </summary>/// <typeparam name="TEntity">The type of the entity.</typeparam>/// <param name="condition">The condition based on which the existence will checked.</param>/// <param name="cancellationToken"> A <see cref="CancellationToken"/> to observe while waiting for the task to complete.</param>/// <returns>Returns <see cref="bool"/>.</returns>Task<bool>ExistsAsync<TEntity>(Expression<Func<TEntity,bool>>condition,CancellationTokencancellationToken=default)whereTEntity:class;
Hello,
I was wondering, we do not have .Any() or I cannot find it?
Regards!
The text was updated successfully, but these errors were encountered: