0

如何使用 Propel 1.6 (propel bundle 1.2) 在 symfony 2 中使用全文过滤器?它在 propel bundle 自述文件中提到,但没有找到任何如何使用它的示例。

4

1 回答 1

1

我是这样做的:

TableQuery::create()->where("match(column) against('+text' in boolean mode)")->find();

如果有人找到更好的解决方案,请告诉我。

于 2013-07-03T14:25:17.377 回答