在以下情况下:
'with'=>array('pros.comments', 'cons.comments')
消除“评论”歧义的解决方案是:
'with'=>array('pros.comments', 'cons.comments'=>array('alias'=>'con_comments'))
但是,如果我有三个级别怎么办:
'with'=>array('pros.comments.author', 'cons.comments.author')
???如何消除评论和作者的歧义?
提前致谢