Dear,
I have a llblgen project upgraded from version 4.2 to 5.10.
It looks like most of the upgrading went fine, but I am still missing a ModelInfoProviderSingleton class.
It is situated in the relationClasses
public partial class AdviesRelations: RelationFactory
{
/// <summary>Returns a new IEntityRelation object, between AdviesEntity and StapEntity over the 1:n relation they have, using the relation between the fields: Advies.AdviesId - Stap.AdviesId</summary>
public virtual IEntityRelation StapEntityUsingAdviesId
{
get { return ModelInfoProviderSingleton.GetInstance().CreateRelation(RelationType.OneToMany, "Stappen", true, new[] { AdviesFields.AdviesId, StapFields.AdviesId }); }
}
/// <summary>Returns a new IEntityRelation object, between AdviesEntity and StappenplanEntity over the 1:n relation they have, using the relation between the fields: Advies.AdviesId - Stappenplan.AdviesId</summary>
public virtual IEntityRelation StappenplanEntityUsingAdviesId
{
get { return ModelInfoProviderSingleton.GetInstance().CreateRelation(RelationType.OneToMany, "Stappenplannen", true, new[] { AdviesFields.AdviesId, StappenplanFields.AdviesId }); }
}
Where should this class be situated?
I checked my references to the new version dll's twice, but no solution yet.
Can anyone give me a hint?
Regards,
John