joining expression does not work
Notice: This thread is very old.
- alnux
- Member | 139
Here
https://doc.nette.org/…ase/explorer
On has one relation Just before this
echo $book->title . ": ";
echo $book->author->name;
if ($book->translator) {
echo " (translated by " . $book->translator->name . ")";
}