Я использую несколько баз данных с именами 'default' и 'default_history.Под базой данных 'default' у меня есть таблица с именем 'recipes' и 'order_detail_history' под базой данных 'default_history'.У меня есть модель таблицы с именем OrderDetailHistoryTable.вот моя таблица моделей: -
public static function defaultConnectionName()
{
return 'default_history';
}
public function initialize(array $config)
{
parent::initialize($config);
$this->setTable('order_detail_history');
$this->setDisplayField('id');
$this->setPrimaryKey('id');
$this->belongsTo('RecipesLeft', [
'strategy' => 'select',
'propertyName' => 'Recipes',
'className' => 'Recipes',
'foreignKey' => 'recipe_id',
'joinType' => 'LEFT'
]);
}
Я использую запрос: -
$recipe_list_history = $this->OrderDetailHistory->find('list', ['keyField' => 'RecipesLeft.id', 'valueField' => 'RecipesLeft.recipe_name'])->select(['RecipesLeft.id', 'RecipesLeft.recipe_name'])->contain(['RecipesLeft'])->where(['OrderDetailHistory.order_id' => $history_id])->order(['OrderDetailHistory.id'])->hydrate(false)->toArray();
, и я получаю эту ошибку БД: -
Column not found: 1054 Unknown column 'RecipesLeft.id' in 'field list'
SELECT RecipesLeft.id AS `RecipesLeft__id`, RecipesLeft.recipe_name AS `RecipesLeft__recipe_name` FROM order_detail_history OrderDetailHistory WHERE OrderDetailHistory.order_id = :c0 ORDER BY OrderDetailHistory.id
У меня естьопределить связь в таблице моделей, но я не могу присоединиться к таблице рецептов с помощью order_detials_history. !!