我加入2個表像下: $model = SalesEntry::find() ->joinWith('salesItems') ->all();
yii2加入模型作爲數據提供程序
然後在視圖中使用的DataProvider類似以下內容: GridView::widget([ 'dataProvider' => $model, 'columns' => [ 'date', // sample field from first table to see if ok ], ]);
和我有以下錯誤:
Call to a member function getCount() on a non-object
我在這裏做錯了什麼?