Background: LLBLGen Pro. Version 1.0.2004.1 Final (Two class scenario templates)
I am running into a problem using the GetDependingRelatedEntities method of my EntityBase classes. Within LLBLGen, I have an entity with three relations (2 1:n and 1 m:1). It was my understanding that the 1:n relationships would be returned as an ArrayList of EntityCollections when I make a call to enity.GetDependingRelatedEntities(). However, the code generated always returns an empty ArrayList. However, the call to GetDependentEntities() returns the m:1 relationship. Is there something obvious I am missing?
Thanks!
This is the code in my EntityBase class:
public override ArrayList GetDependingRelatedEntities()
{
ArrayList toReturn = new ArrayList();
return toReturn;
}