Fixes #2022: Added info about yii\db\Query::andFilterCompare() to guide

This commit is contained in:
Alexander Makarov
2016-05-01 00:51:19 +03:00
parent 63cac32fbc
commit 9e7d5041cc
2 changed files with 17 additions and 1 deletions

View File

@ -395,9 +395,11 @@ class PostSearch extends Post
return $dataProvider;
}
}
```
> Tip: See [Query Builder](db-query-builder.md) and especially [Filter Conditions](db-query-builder.md#filter-conditions)
> to learn how to build filtering query.
You can use this function in the controller to get the dataProvider for the GridView:
```php