Investigated issues

This commit is contained in:
Daniel
2020-11-20 18:53:04 +01:00
parent 8429d14bfe
commit d9fb33a523
12 changed files with 627 additions and 59 deletions

14
orders/test/model.cds Normal file
View File

@@ -0,0 +1,14 @@
service WithDraft {
@odata.draft.enabled
entity Boo as projection on Foo;
}
service WithoutDraft {
entity Boo as projection on Foo;
}
entity Foo {
key ID : UUID;
bar : Composition of many {
key pos : Integer; //> meant to be a local key only
}
}