nameless_underscore wrote:
Thank you for your response. I have a question about one of the breaking changes from 5.3 to 5.4
How would I go about testing if "If an entity doesn't have Custom Properties defined, the static property CustomProperties isn't available anymore" I am not even sure where to look. I am working with an old code base that is not documented about how it was designed.
If your own code uses that static property (e.g. var c = CustomerEntity.CustomProperties;
) and it's no longer generated because the entity doesn't have any custom properties defined, it'll give a compile error as the property CustomProperties
isn't generated into the customer class anymore. This isn't that bad tho, most people don't use these anyway.
So to test if you run into this, you compile your code with the newly generated code and if it gives errors of missing 'CustomProperties' properties then you're running into these. If so, it's best to remove the code, OR define a custom property in each entity at least. You can do that in the designer with a plugin that's shipped with the designer