I have 3 tables: Posts, Comments, Members.
There is a one-to-many relationship between Posts and Comments. There is a one-to-one relationship between Comments and Members. When I retrieve the posts from the ORM, it returns the comments too: $post->comments. How is it possible to return the member of the comment: $post->comment->member?