-
Notifications
You must be signed in to change notification settings - Fork 13
Any Operations
Furkan Güngör edited this page Dec 3, 2021
·
2 revisions
Any queries can be run with EasyRepository.
public class MyClass
{
private readonly IRepository repository;
public MyClass(IRepository repository)
{
this.repository = repository;
}
public async Task<bool> AnyAsync()
{
return await repository.AnyAsync<Author>(a => a.Surname.Contains("t"));
}
}Welcome to the EasyRepository.EFCore wiki!
Topics:
-
Getting Started
-
Implementations
-
Specification
-
Ardalis.Specification & EasyRepository.EFCore