vuongxuongminh / yii2-searchable

Provide simple full-text search for Yii2 Active Record.
BSD 3-Clause "New" or "Revised" License
18 stars 10 forks source link

[Bug] Can not make searchable query condition of relations #2

Open vuongxuongminh opened 5 years ago

vuongxuongminh commented 5 years ago

Currently we can not make a searchable query condition when have query relations. I suggest add macro methods in Active Query class like andSearchWhere, orSearchWhere, searchWhere to support this feature, macro methods will be attach by the behavior attach to the Active Query via global init event.

leandrogehlen commented 4 years ago

I think it's not necessary, can be used:

User::find()->with('profile')->search('foo')