How do we check for the existence of an dynamic entity prior to creating a new one?
For e.g, I create such an entity, as below.
DynamicEntityTypeBuilder
.CreateType("ProjectTypeCount", "Default")
If this line executes a second time, I get a message that says "Entity already exists".
How can I query the persistence manager to check if this entity already exists ?
Thanks.