@simplysm/sd-orm-common
Advanced tools
Comparing version 3.4.64 to 3.4.65
@@ -28,3 +28,3 @@ "use strict"; | ||
} | ||
else if (arg1 !== undefined) { | ||
else if (arg3 === undefined) { | ||
this.tableType = arg1; | ||
@@ -54,2 +54,10 @@ this._as = arg2; | ||
this._def = arg4; | ||
if (arg1 !== undefined) { | ||
this.tableType = arg1; | ||
var tableDef = DbDefinitionUtils_1.DbDefinitionUtils.getTableDef(this.tableType); | ||
if (!tableDef) { | ||
throw new Error("'" + this.tableType.name + "'\uC5D0 '@Table()'\uC774 \uC9C0\uC815\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."); | ||
} | ||
this._tableDef = tableDef; | ||
} | ||
} | ||
@@ -275,5 +283,4 @@ } | ||
var entity = this._generateSubEntity(this._entity, this._as); | ||
return new Queryable(this._db, tableType, this._as, entity, { | ||
from: this.getSelectDef() | ||
}); | ||
var from = this.getSelectDef(); | ||
return new Queryable(this._db, tableType, this._as, entity, { from: from }); | ||
}; | ||
@@ -323,3 +330,3 @@ Queryable.prototype.getSelectDef = function () { | ||
if (this._def.limit && this._def.join && this._def.join.some(function (item) { return !item.isSingle; })) { | ||
throw new Error("다수의 'RECORD'를 'JOIN'하는 쿼리를 사용한 이후에는 'LIMIT'을 사용할 수 없습니다. 'LIMIT'을 먼저 사용하고, 'WRAP'한 이후에 'JOIN' 하시기 바랍니다."); | ||
throw new Error("다수의 'RECORD'를 'JOIN'하는 쿼리와 'LIMIT'을 동시에 사용할 수 없습니다. 'LIMIT'을 먼저 사용하고, 'WRAP'한 이후에 'JOIN' 하시기 바랍니다."); | ||
} | ||
@@ -326,0 +333,0 @@ if (this._def.limit && (!this._def.orderBy || this._def.orderBy.length <= 0)) { |
@@ -51,3 +51,3 @@ "use strict"; | ||
exports.sorm.greaterThenOrEqual(source, from), | ||
exports.sorm.lessThenOrEqual(source, to) | ||
exports.sorm.lessThen(source, to) | ||
]); | ||
@@ -54,0 +54,0 @@ }, |
@@ -27,3 +27,3 @@ "use strict"; | ||
} | ||
else if (arg1 !== undefined) { | ||
else if (arg3 === undefined) { | ||
this.tableType = arg1; | ||
@@ -52,2 +52,10 @@ this._as = arg2; | ||
this._def = arg4; | ||
if (arg1 !== undefined) { | ||
this.tableType = arg1; | ||
const tableDef = DbDefinitionUtils_1.DbDefinitionUtils.getTableDef(this.tableType); | ||
if (!tableDef) { | ||
throw new Error(`'${this.tableType.name}'에 '@Table()'이 지정되지 않았습니다.`); | ||
} | ||
this._tableDef = tableDef; | ||
} | ||
} | ||
@@ -259,5 +267,4 @@ } | ||
const entity = this._generateSubEntity(this._entity, this._as); | ||
return new Queryable(this._db, tableType, this._as, entity, { | ||
from: this.getSelectDef() | ||
}); | ||
const from = this.getSelectDef(); | ||
return new Queryable(this._db, tableType, this._as, entity, { from }); | ||
} | ||
@@ -304,3 +311,3 @@ getSelectDef() { | ||
if (this._def.limit && this._def.join && this._def.join.some(item => !item.isSingle)) { | ||
throw new Error("다수의 'RECORD'를 'JOIN'하는 쿼리를 사용한 이후에는 'LIMIT'을 사용할 수 없습니다. 'LIMIT'을 먼저 사용하고, 'WRAP'한 이후에 'JOIN' 하시기 바랍니다."); | ||
throw new Error("다수의 'RECORD'를 'JOIN'하는 쿼리와 'LIMIT'을 동시에 사용할 수 없습니다. 'LIMIT'을 먼저 사용하고, 'WRAP'한 이후에 'JOIN' 하시기 바랍니다."); | ||
} | ||
@@ -307,0 +314,0 @@ if (this._def.limit && (!this._def.orderBy || this._def.orderBy.length <= 0)) { |
@@ -50,3 +50,3 @@ "use strict"; | ||
exports.sorm.greaterThenOrEqual(source, from), | ||
exports.sorm.lessThenOrEqual(source, to) | ||
exports.sorm.lessThen(source, to) | ||
]); | ||
@@ -53,0 +53,0 @@ }, |
{ | ||
"name": "@simplysm/sd-orm-common", | ||
"version": "3.4.64", | ||
"version": "3.4.65", | ||
"description": "심플리즘 패키지 - ORM 모듈 (browser/node)", | ||
@@ -13,4 +13,4 @@ "author": "김석래", | ||
"dependencies": { | ||
"@simplysm/sd-core-common": "3.4.64" | ||
"@simplysm/sd-core-common": "3.4.65" | ||
} | ||
} |
@@ -57,4 +57,4 @@ import { | ||
// 일반 생성 | ||
else if (arg1 !== undefined) { | ||
this.tableType = arg1; | ||
else if (arg3 === undefined) { | ||
this.tableType = arg1 as Type<T>; | ||
this._as = arg2 as string | undefined; | ||
@@ -88,4 +88,15 @@ | ||
this._as = arg2 as string; | ||
this._entity = arg3!; | ||
this._entity = arg3; | ||
this._def = arg4!; | ||
if (arg1 !== undefined) { | ||
this.tableType = arg1; | ||
// Init TABLE Definition | ||
const tableDef = DbDefinitionUtils.getTableDef(this.tableType); | ||
if (!tableDef) { | ||
throw new Error(`'${this.tableType.name}'에 '@Table()'이 지정되지 않았습니다.`); | ||
} | ||
this._tableDef = tableDef; | ||
} | ||
} | ||
@@ -394,5 +405,4 @@ } | ||
return new Queryable<D, T | R>(this._db, tableType, this._as, entity, { | ||
from: this.getSelectDef() | ||
}); | ||
const from = this.getSelectDef(); | ||
return new Queryable<D, T | R>(this._db, tableType, this._as, entity, {from}); | ||
} | ||
@@ -460,3 +470,3 @@ | ||
if (this._def.limit && this._def.join && this._def.join.some(item => !item.isSingle)) { | ||
throw new Error("다수의 'RECORD'를 'JOIN'하는 쿼리를 사용한 이후에는 'LIMIT'을 사용할 수 없습니다. 'LIMIT'을 먼저 사용하고, 'WRAP'한 이후에 'JOIN' 하시기 바랍니다."); | ||
throw new Error("다수의 'RECORD'를 'JOIN'하는 쿼리와 'LIMIT'을 동시에 사용할 수 없습니다. 'LIMIT'을 먼저 사용하고, 'WRAP'한 이후에 'JOIN' 하시기 바랍니다."); | ||
} | ||
@@ -463,0 +473,0 @@ |
@@ -57,3 +57,3 @@ import { | ||
sorm.greaterThenOrEqual(source, from), | ||
sorm.lessThenOrEqual(source, to) | ||
sorm.lessThen(source, to) | ||
]); | ||
@@ -60,0 +60,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
525153
7835
27
+ Added@simplysm/sd-core-common@3.4.65(transitive)
- Removed@simplysm/sd-core-common@3.4.64(transitive)