In Rails, say a blogging application, given a particular post object you could get the name of the author of the post doing something like:
post = Post.find(1)
author_name = post.author.name
Is there a PHP equivalent using DataObject, something like (just making up imaginary syntax here):
$postsTable = DB_DataObject::factory('posts');
$authorName = (($postsTable->id = 1)->find(true))->author->name;
| finds and autofetches post #1 |->author->name