Skip to content
Advertisement

Yii – findAll with order by

How to findAll with specific column with order by desc ?

Code bellow worked and find all from the developer id

JavaScript

Code bellow worked and ordered

JavaScript

When I mixed together then only worked for findAll developer_id=’.$id doesn’t order by

JavaScript

Any suggestion to do that ? Thanks

Advertisement

Answer

In your model, add this function:

JavaScript

Now you can do the query like this:

JavaScript

=====

Bonus: You can also add this function in your model:

JavaScript

Now you can do the query like this:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement