kargenc wrote:
[NHibernate.Mapping.Attributes.ManyToOne(0, ClassType = typeof(ApplicationEntities),
ForeignKey = "FK_EntityActionRights_ApplicationEntities",
Cascade = NHibernate.Mapping.Attributes.CascadeStyle.None,
NotNull = true,Lazy=NHibernate.Mapping.Attributes.Laziness.False)]
public virtual ApplicationEntities ApplicationEntity
{
get { return _applicationEntity; }
set
{
SoftExtensions.Set<ApplicationEntities>(this, "ApplicationEntity", ref _applicationEntity,
value, PropertyChanged); }
}
Why this ApplicationEntity Property Lazy, this is ManyToOne, i dont want it a Lazy..
I found problem, sorry this message, this class must be decorate with lazy=false :)