@mikro-orm/core 6.6.3-dev.5 → 6.6.3-dev.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/core",
|
|
3
|
-
"version": "6.6.3-dev.
|
|
3
|
+
"version": "6.6.3-dev.7",
|
|
4
4
|
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "index.mjs",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"esprima": "4.0.1",
|
|
65
65
|
"fs-extra": "11.3.2",
|
|
66
66
|
"globby": "11.1.0",
|
|
67
|
-
"mikro-orm": "6.6.3-dev.
|
|
67
|
+
"mikro-orm": "6.6.3-dev.7",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -6,6 +6,7 @@ const enums_1 = require("../enums");
|
|
|
6
6
|
const Utils_1 = require("./Utils");
|
|
7
7
|
const JsonType_1 = require("../types/JsonType");
|
|
8
8
|
const RawQueryFragment_1 = require("./RawQueryFragment");
|
|
9
|
+
const EntityIdentifier_1 = require("../entity/EntityIdentifier");
|
|
9
10
|
class EntityComparator {
|
|
10
11
|
metadata;
|
|
11
12
|
platform;
|
|
@@ -522,8 +523,11 @@ class EntityComparator {
|
|
|
522
523
|
return val;
|
|
523
524
|
};
|
|
524
525
|
context.set('toArray', toArray);
|
|
526
|
+
context.set('EntityIdentifier', EntityIdentifier_1.EntityIdentifier);
|
|
525
527
|
ret += ` if (entity${entityKey} === null) {\n`;
|
|
526
528
|
ret += ` ret${dataKey} = null;\n`;
|
|
529
|
+
ret += ` } else if (entity${entityKey}?.__helper.__identifier && !entity${entityKey}.__helper.hasPrimaryKey()) {\n`;
|
|
530
|
+
ret += ` ret${dataKey} = entity${entityKey}?.__helper.__identifier;\n`;
|
|
527
531
|
ret += ` } else if (typeof entity${entityKey} !== 'undefined') {\n`;
|
|
528
532
|
ret += ` ret${dataKey} = toArray(entity${entityKey}.__helper.getPrimaryKey(true));\n`;
|
|
529
533
|
ret += ` }\n`;
|