Propel得到许多条件

时间:2014-08-06 14:33:39

标签: php mysql many-to-many propel relation

我有一个评论表,其中包含多对多的帖子连接。 我的评论有一个数字comment_type字段。

我能做到:

post->getCommentPosts();

我得到了所有评论。 但是如何获得特定comment_type或范围的所有注释?

我试过了:

comments = \CommentPostQuery::create()
            ->useCommentQuery()
            ->filterByCommenttypeId($typeid)
            ->find();

但这会导致sql 1064违规。

希望有人可以提供帮助

提前致谢

0 个答案:

没有答案