-
Notifications
You must be signed in to change notification settings - Fork 1
/
entityObject.js
37 lines (37 loc) · 1.14 KB
/
entityObject.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class EntityObject {
constructor(ctx) { }
Sum(qFn) {
return null;
}
Contains(feild, values, entity) {
return this;
}
Where(qFn, paramsKey, paramsValue, entity) {
return this;
}
On(func, mEntity) {
return this;
}
LeftJoin(fEntity) {
return this;
}
toString() { return ""; }
clone(source, destination, isDeep) { return null; }
Join(qFn, entity, mainFeild, isMainTable) { return this; }
Any(qFn, paramsKey, paramsValue, queryCallback) { return null; }
First(qFn, paramsKey, paramsValue, queryCallback) { return null; }
ToList(queryCallback) { return null; }
Count(qFn, paramsKey, paramsValue, queryCallback) { return null; }
OrderBy(qFn, entity) { return this; }
OrderByDesc(qFn, entity) { return this; }
GroupBy(qFn) { return this; }
Select(qFn) { return this; }
Take(count) { return this; }
Skip(count) { return this; }
Max(qFn) { return null; }
Min(qFn) { return null; }
}
exports.EntityObject = EntityObject;
//# sourceMappingURL=entityObject.js.map