Criteria in yii2

Hello friends

I have this code in Yii 1.x:




$q = new CDbCriteria();

        $q->limit = $limit;

        $q->offset = $offset;

        $q->compare('data_expira', date("Y-m-d"));

           

        $model = AvisoUnidadePortaria::model()->with('idProprietarioUnidade')->findAll($q);



How can I do this in Yii2?

Hello Alexandre Carmo,

may be this link will be helpful to you

Thanks

Thanks