I apologize if someone else has asked this before, but a quick search didn't yield an answer.
How can I achieve a self referencing many to many relationship with LLBLGen?
This is what I mean:
EntityTable
EntityID (PK)
EntityName
EtcField
JunctionTable
JunctionID (PK)
PrimaryEntityID (FK for EntityID)
SecondaryEntityID (FK for EntityID)
So Entity can have 0 or more "children" as well as 0 or more "parents" (each accessible through a field in the Entity BL). Is that clear enough? Is it possible with LLBLGen?