que tiene lugar la clase de dominioNhibernate proyección sobre las propiedades anidadas anidados
public abstract class BaseEntity<T> where T: struct
{
public virtual T Id { get; set; }
public virtual bool Equals(BaseEntity<T> other)
}
public class Location : BaseEntity<Int32>
{
public User User {get;set;}
}
public class User : BaseEntity<Int32>
{
public string Name {get;set;
}
public OtherInfo Otherinfo {get;set;};
}
public class OtherInfo
{
public string preference {get;set;};
}
var criteria = session.CreateCriteria(typeof(Location), "alias");
criteria.CreateCriteria("User", "user", JoinType.InnerJoin);
criteria.CreateCriteria("user.Otherinfo", "userInfo",JoinType.InnerJoin);
criteria.Add(Restrictions.Eq("user.Id", 100));
criteria.SetProjection(Projections.Alias(Projections.Id(), "Id"), Projections.Alias(Projections.Property("user.Name"), "Name"), Projections.Alias(Projections.Property("userInfo.preference "), "pref"));
ahora cuando yo haga por encima de criterios, da error en userInfo.preference. {NHibernate.QueryException: could not resolve property: Otherinfo of: Location.User ¿Qué es un error aquí? ¿se debe a multi objetos anidados
fue sólo de mi error tipográfico al publicar cuestión, en su código correcto. – Techmaster
tiene alguna otra pista, hágamelo saber, me llamó la atención desde hace mucho tiempo. – Techmaster
Sí seguro: use CreateAlias en lugar de CreateCriteria - CreateCriteria lo moverá hacia abajo de la asociación, CreateAlias es más natural - actualizó el ejemplo –