Exemplo inicial
var query1 = from f in contexto.Faixas
where f.Album.Artista.Nome == "Led Zeppelin"
select f;
var query2 = query1.Where(f => f.Album.Nome.Contains("Graffiti"));
Exemplo após refatoração de variáveis
var faixasLedZeppelin = from f in contexto.Faixas
where f.Album.Artista.Nome == "Led Zeppelin"
select f;
var faixasAlbumEspecificoLed = faixasLedZeppelin.Where(f => f.Album.Titulo.Contains("Graffiti"));
;)