Skip to content

create-the-domain-model #8594

Closed
Closed
@lukastom

Description

@lukastom

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
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions