public void MetodoTeste() { Expression <Func <Aluno, bool> > predicate = e => e.Nome.Contains("A"); var alunos = alunoRepository.FindBy(predicate); }