====== Select mit Joins und Alias ====== <code php> $info_new = InfoContents::find() ->alias('content') ->joinwith('category cat') ->where(['cat.project_id' => $this->project_id]) ->orderBy(['content.created_at' => SORT_DESC]) ->limit(5) ->all(); </code>