如何根据 Propel 中连接表的列进行过滤?
像:
$results = FooQuery::create()->joinBar()->filterByBarSurname('surname');
您必须使用文档use
中描述的方法:
$results = FooQuery::create()
->useBarQuery()
->filterBySurname('surname')
->endUse()
->find();
// example Query generated for a MySQL database
$query = 'SELECT foo.* from foo
INNER JOIN bar ON foo.BAR_ID = bar.ID
WHERE bar.SURNAME = :p1'; // :p1 => 'surname'
如果您必须使用join()
,我认为您不能使用filterByXXX
方法,而是使用旧的where
:
$results = FooQuery::create()
->join('Foo.Bar')
->where('Bar.surname = ?', 'surname')
->find();