Hello,
I have a Doctrine Form (Teammatch) which consists of several Matches
which themselves have several Games.
So I have a recursive embedded Relation like this:
class TeammatchForm extends BaseTeammatchForm
{
public function configure()
{
$this->embedRelation('Matches');
}
}
class MatchForm extends BaseMatchForm
{
public function configure()
{
$this->embedRelation('Games');
}
}
But it doesn't work. I get a Win32 Exception in apache.exe and the
connection is lost.
Without $this->embedRelation('Games'); it works fine. So it must have
to do with the recursion.
Does anybody know a workaround?
Thanks
--
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en.