initial upload of extension sample

This commit is contained in:
Wolfgang Koch
2021-05-06 15:22:46 +02:00
commit 6657568824
34 changed files with 10469 additions and 0 deletions

27
node_modules/_base/srv/mashup.cds generated vendored Normal file
View File

@@ -0,0 +1,27 @@
////////////////////////////////////////////////////////////////////////////
//
// Mashing up imported models...
//
using { sap.capire.bookshop.Books } from '../db/schema';
//
// Extend Books with access to Reviews and average ratings
//
/*
using { ReviewsService.Reviews } from '@capire/reviews';
extend Books with {
reviews : Composition of many Reviews on reviews.subject = $self.ID;
rating : Decimal;
}
*/
//
// Extend Orders with Books as Products
//
using { sap.capire.orders.Orders_Items } from '../db/schema';
extend Orders_Items with {
book : Association to Books on product.ID = book.ID
}