How do I use the Join method to give an include of a value from another table? In this case I was going to use the MusicCall table and the MusicCount table
var chamadaMusicas = db.ChamadaMusicas
.Include(c => c.Chamada)
.Include(c => c.Musica)
.Where(c => c.Chamada.PessoaID.Equals(id)).Where(i => i.Chamada.Ativa.Equals(true))
.Join(db.MusicaVotadas)
.ToList();