Closed
Description
Please use the form below, leaving the prefilled data to help us. Thank you.
Page link: create-the-domain-model
Document link: creating-the-domain-model.md
My Issue/Suggestion
The code const systemUser = workingCopy.model().findEntityByQualifiedName('Administration.Account');
does not work anymore. The SDK specification probably changed. An example of now working code:
const generalization = domainmodels.Generalization.createIn(customer);
const systemUser = (await workingCopy.openModel()).findEntityByQualifiedName(`Administration.Account`);
if (systemUser) {
generalization.generalization = systemUser;
} else {
}
Metadata
Metadata
Assignees
Labels
No labels