Lazy / Deferred loading of links not on time?
Did someone experience the following? Validating objects with fields that refer to other Entities would throw you an error stating that the field wasn't present and that when you would debug the program and you would inspect the entities that the fields are populated. This has happened to me on two occasions now and it seems to be some problem with lazy loading, as if the lazy loading did not give the answer fast enough. We have this (simplified) model where class Survey { ... public bool Enabled {get; set;} [Required] public virtual OrganisationalUnit OU {get; set;} ... } If we would just do