Hello,
I'm using version 3 and am getting the following error for each of my entities:
Error 1 'RelationCollection' is an ambiguous reference between 'Base.Model.CollectionClasses.RelationCollection' and 'SD.LLBLGen.Pro.ORMSupportClasses.RelationCollection' C:\DotNet\Dev\ormTrunk\Base.Model\DAL\EntityClasses\CombineMethodEntity.cs 116 22 Base.Model
The conflicting code within the entity is:
/// <summary>Gets the relation objects which represent the relation the fieldName specified is mapped on. </summary>
/// <param name="fieldName">Name of the field mapped onto the relation of which the relation objects have to be obtained.</param>
/// <returns>RelationCollection with relation object(s) which represent the relation the field is maped on</returns>
protected override RelationCollection GetRelationsForFieldOfType(string fieldName)
{
return GetRelationsForField(fieldName);
}
What needs to happen to get this to compile?
Thanks,
Ronnie