Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Tags

Persistency, Interaction, DCM

Type of accelerator

Example project to demonstrate Blueriq functionality and accelerate your learning journey. 

How to get
CompatibilityBlueriq 16.0 and higher

Description

To get this project working, the aggregate plugins and properties need to be set correctly. See for installation details this page.

This example project aims

Table of contents

Table of Contents

Info
Example projects are Blueriq models which demonstrate Blueriq functionality. They are included in the standard Blueriq library which is shipped with Blueriq. You can view, run and extend these projects by creating a new project and use an example project as a starting point.

The example project Career is a project that is used to demonstrate the functionality regarding persistency management. The following subjects play a role in this example project:

...

For more information on persistency management design see also Persistency Management guide.

Contents of the example project

The example project Career consists of two parts. The first part is about a single person and his jobs. The second part is deals with a non-singleton entity Course.

Contents of the example project

Image AddedImage Removed

Person aggregate

The aggregate Person consists of the entities Person and Job, but the definition only contains Person. Aggregate functionality automatically creates, reads, updates and deletes all entities that are connected to the entity that is defined in the aggregate definition.

...

Version management is enabled in the create, read, update and delete service services so multiple version of an aggregate are available, as shown in the aggregate list below.

Image Removed

Shown is one aggregate about Tom Barman who - at first - has one job. In version 1 his name was misspelled, so this was corrected in version 2. At one point, Tom had another job, this is effectuated in version 3, the current version of the aggregate.

Image Added
As can be seen in the example project, custom metadata fields can be defined for an aggregate. In the person example, the custom metadata fields FullName, Age and NrOfJobs have been added to the person aggregate. The first is a concatenation of two existing attributes, the second is a plain attribute and the third custom metadata field is a calculation of the number of jobs attached to the person entity. 

...

CourseGroup aggregate

The course group aggregate only consist of the entity Course, which is a non-singleton. This means The create service for the aggregate CourseGroup is defined in such a way, that it is possible to save more than one course in such an aggregate. An exposed flow CourseManagement CourseGroupManagement is available to manage course group aggregates, as shown below.

...

Image Added

A course has a duration in number of days and a price in euros. Custom metadata fields have been defined within the course group aggregate to summarize the number of days and the prize price and count the number of courses for each course group aggregate. Version Versioning has been disabled in this part of the example, so only the latest version of each aggregate is available.