We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a859738 commit ce9b8dbCopy full SHA for ce9b8db
composer.json
@@ -14,7 +14,7 @@
14
"php": ">=7.2.0",
15
"ext-pdo": "*",
16
"yiisoft/yii2": "~2.0.0",
17
- "smoren/query-relation-manager": "2.0.3"
+ "smoren/query-relation-manager": "2.0.4"
18
},
19
"autoload": {
20
"psr-4": {
src/Yii2/QueryRelationDataProvider.php
@@ -101,7 +101,7 @@ protected function prepareModels()
101
foreach($pkValues as $row) {
102
$rowPrefixed = [];
103
foreach($row as $field => $value) {
104
- $rowPrefixed["`{$mainTable->alias}`.`{$field}`"] = $value;
+ $rowPrefixed["{$mainTable->alias}.{$field}"] = $value;
105
}
106
$pkValuesPrefixed[] = $rowPrefixed;
107
0 commit comments