How can i use full-text filters in symfony 2 using Propel 1.6 (propel bundle 1.2)? It's mentioned on the propel bundle readme, but didn't find any example of how to use it.
Asked
Active
Viewed 433 times
1 Answers
1
I did it like this:
TableQuery::create()->where("match(column) against('+text' in boolean mode)")->find();
If anyone found a better solution, please let me know.

Radu Dragomir
- 660
- 2
- 9
- 35