0
如何在使用Propel 1.6(propel bundle 1.2)的symfony 2中使用全文過濾器? 它在推進包自述文件中提到,但沒有找到如何使用它的任何示例。在Symfony 2和Propel 1.6中進行全文搜索
如何在使用Propel 1.6(propel bundle 1.2)的symfony 2中使用全文過濾器? 它在推進包自述文件中提到,但沒有找到如何使用它的任何示例。在Symfony 2和Propel 1.6中進行全文搜索
我做了這樣的:
TableQuery::create()->where("match(column) against('+text' in boolean mode)")->find();
如果有人發現了一個更好的解決方案,請讓我知道。
奇妙地工作,謝謝 – azzy81