@mikro-orm/core 6.6.5-dev.6 → 6.6.6-dev.0
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/EntityManager.js +8 -12
- package/package.json +2 -2
package/EntityManager.js
CHANGED
|
@@ -1718,21 +1718,17 @@ class EntityManager {
|
|
|
1718
1718
|
return { key: cacheKey, data: cached };
|
|
1719
1719
|
}
|
|
1720
1720
|
let data;
|
|
1721
|
+
const createOptions = {
|
|
1722
|
+
merge: true,
|
|
1723
|
+
convertCustomTypes: false,
|
|
1724
|
+
refresh,
|
|
1725
|
+
recomputeSnapshot: true,
|
|
1726
|
+
};
|
|
1721
1727
|
if (Array.isArray(cached) && merge) {
|
|
1722
|
-
data = cached.map(item => em.entityFactory.create(entityName, item,
|
|
1723
|
-
merge: true,
|
|
1724
|
-
convertCustomTypes: true,
|
|
1725
|
-
refresh,
|
|
1726
|
-
recomputeSnapshot: true,
|
|
1727
|
-
}));
|
|
1728
|
+
data = cached.map(item => em.entityFactory.create(entityName, item, createOptions));
|
|
1728
1729
|
}
|
|
1729
1730
|
else if (utils_1.Utils.isObject(cached) && merge) {
|
|
1730
|
-
data = em.entityFactory.create(entityName, cached,
|
|
1731
|
-
merge: true,
|
|
1732
|
-
convertCustomTypes: true,
|
|
1733
|
-
refresh,
|
|
1734
|
-
recomputeSnapshot: true,
|
|
1735
|
-
});
|
|
1731
|
+
data = em.entityFactory.create(entityName, cached, createOptions);
|
|
1736
1732
|
}
|
|
1737
1733
|
else {
|
|
1738
1734
|
data = cached;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikro-orm/core",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.6-dev.0",
|
|
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.3",
|
|
66
66
|
"globby": "11.1.0",
|
|
67
|
-
"mikro-orm": "6.6.
|
|
67
|
+
"mikro-orm": "6.6.6-dev.0",
|
|
68
68
|
"reflect-metadata": "0.2.2"
|
|
69
69
|
}
|
|
70
70
|
}
|