在 Rails 中,比如说一个博客应用程序,给定一个特定的帖子对象,你可以得到帖子作者的名字,如下所示:
post = Post.find(1)
author_name = post.author.name
是否有使用 DataObject 的 PHP 等价物,例如(在这里只是虚构的语法):
$postsTable = DB_DataObject::factory('posts');
$authorName = (($postsTable->id = 1)->find(true))->author->name;
| finds and autofetches post #1 |->author->name