Hi! I have the next query:
var bPermisos = from b in ruc.Permisos
where b.IdUsuario == cu.Id
select new Permisos(){
Id=b.Id,
IdUsuario=b.Id,
IdPerfil=b.Id,
Estatus=b.Estatus
};
var qSisPer = from perm in bPermisos
**select new {
perm.IdPerfil,
perm.Cat_Perfil.Nivel,
perm.Cat_Perfil.Nombre,
Nombre_Sistem=perm.Cat_Perfil.Cat_Sistema.Nombre**
};
And is throwing me an exception, plz help!