Combine Predicados em Linq-to-entities

Eu quero construir dinamicamente minha lista de onde as condições. Aqui está um trecho do meu código:

protected Expression<Func<event_info, bool>> _wherePredicate = c => true;

public void main() 
{

 _wherePredicate = _wherePredicate.And(c => c.createdby == 6);
 _wherePredicate = _wherePredicate.And(c => c.isdeleted == 0);

 var query = from ev in dataConnection.event_info
                       where ev.isdeleted == 0
                       select ev;
 Results = query.Where(_wherePredicate).ToList(); 
}

Exceto isso não funciona porque o linq-to-entities não suporta o método Invoke.

O que é uma boa maneira de combinar predicados em linq para entidades?

questionAnswers(1)

yourAnswerToTheQuestion