From 6de9c7d83969c764d64e34e5d4c3ced8c00d9951 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 30 Dec 2020 18:49:15 +0100 Subject: [PATCH] Patch for missing containment in v4 --- orders/db/schema.cds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orders/db/schema.cds b/orders/db/schema.cds index c3b4f1c5..7fad161a 100644 --- a/orders/db/schema.cds +++ b/orders/db/schema.cds @@ -18,7 +18,7 @@ entity Orders_Items { } /** This is a stand-in for arbitrary ordered Products */ -entity Products @(cds.persistence.skip:'always') { +entity Products @(cds.persistence.skip:'always',cds.autoexpose) { key ID : String; }