Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProductReviewView
Please create a React-JS view called "ProductReviewView" for the fields of the ProductReview entity. The ProductReviewView must contain the following fields: - name: Body type: STRING - name: CreatedAt type: DATE - name: IsVerifiedBuyer type: BOOL - name: Product type: Product - name: Rating type: INT - name: ReviewerUser type: UserAccount - name: Title type: STRING The data source for the [ReviewerUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Product] select control should be loaded from the relative URL: "/ProductService/product" (HTTP-GET) An existing ProductReview entity should be loaded from the relative URL: "/ProductService/productreview/{id}" (HTTP-GET) If a new ProductReview entity has been created, the new entity should be posted to the relative URL: "/ProductService/productreview" (HTTP-POST) If an existing ProductReview entity has been updated, the modified entity should be sent to the relative URL: "/ProductService/productreview/{id}" (HTTP-PUT) If an existing ProductReview entity has to be deleted, the following relative URL should be called: "/ProductService/productreview/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint