I already try to create an object from the query of the join bone of the attributes that I want to see but still I can not make the return
public List<????> ListaJoin()
{
var resultado = (from ad in model.AlumnoDireccion
join a in model.Alumno on ad.AlumnoId equals a.AlumnoId
select new { ad.Direccion, a.Nombre, a.Apellido, a.Estado, a.PromedioAcumulado }).ToList();
return resultado();
}