I have this query
this.FixturePartidoPuntaje.Load();
var partidos = from q in this.FixturePartidoPuntaje
where ( q.FixturePartido.Equipo.EquipoId.Equals(equipoId) ||
q.FixturePartido.Equipo1.EquipoId.Equals(equipoId)) &&
q.puntaje > 0
select q;
The most important here is that this is a Jugador Entity.
How do I load the FixturePartido
and ius children?
Thanks