Как использовать 2 выражения в шаблоне репозитория EF
#entity-framework #repository-pattern Вопрос: У меня есть этот метод в моем общем классе репозитория EF public class GenericRepository<T> : IGenericRepository<T> where T : class { public async Task<IEnumerable<T>> GetAllByExpression<T>(Expression<Func<T, bool>> expression,…