-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathmodel.ts
116 lines (102 loc) · 2.37 KB
/
model.ts
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { ObjectID } from "mongodb";
import { Edm } from "../lib/index";
const toObjectID = _id => _id && !(_id instanceof ObjectID) ? ObjectID.createFromHexString(_id) : _id;
@Edm.Annotate({
term: "UI.DisplayName",
string: "Products"
})
export class Product{
@Edm.Key
@Edm.Computed
@Edm.TypeDefinition(ObjectID)
@Edm.Annotate({
term: "UI.DisplayName",
string: "Product identifier"
}, {
term: "UI.ControlHint",
string: "ReadOnly"
})
_id:ObjectID
@Edm.TypeDefinition(ObjectID)
@Edm.Required
CategoryId:ObjectID
@Edm.ForeignKey("CategoryId")
@Edm.EntityType(Edm.ForwardRef(() => Category))
@Edm.Partner("Products")
Category:Category
@Edm.Boolean
Discontinued:boolean
@Edm.String
@Edm.Annotate({
term: "UI.DisplayName",
string: "Product title"
}, {
term: "UI.ControlHint",
string: "ShortText"
})
Name:string
@Edm.String
@Edm.Annotate({
term: "UI.DisplayName",
string: "Product English name"
}, {
term: "UI.ControlHint",
string: "ShortText"
})
QuantityPerUnit:string
@Edm.Decimal
@Edm.Annotate({
term: "UI.DisplayName",
string: "Unit price of product"
}, {
term: "UI.ControlHint",
string: "Decimal"
})
UnitPrice:number
}
@Edm.OpenType
@Edm.Annotate({
term: "UI.DisplayName",
string: "Categories"
})
export class Category{
@Edm.Key
@Edm.Computed
@Edm.TypeDefinition(ObjectID)
@Edm.Annotate({
term: "UI.DisplayName",
string: "Category identifier"
},
{
term: "UI.ControlHint",
string: "ReadOnly"
})
_id:ObjectID
@Edm.String
Description:string
@Edm.String
@Edm.Annotate({
term: "UI.DisplayName",
string: "Category name"
},
{
term: "UI.ControlHint",
string: "ShortText"
})
Name:string
@Edm.ForeignKey("CategoryId")
@Edm.Collection(Edm.EntityType(Product))
@Edm.Partner("Category")
Products:Product[]
@Edm.Collection(Edm.String)
@Edm.Function
echo(){
return ["echotest"];
}
}
export class NorthwindTypes extends Edm.ContainerBase{
@Edm.String
@Edm.URLDeserialize((value:string) => new ObjectID(value))
@Edm.Deserialize(value => new ObjectID(value))
ObjectID = ObjectID
}