0

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.

Radu Dragomir
  • 660
  • 2
  • 9
  • 35

1 Answers1

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