We have an abstract class where all properties have private setters. In our concrete derived class, the code generator is creating a static “create” method that attempts to set the properties of the abstract class. Obviously this fails since the setters are private.
How do we suppress the creation of the “create” method?
In v3.5 I don’t think you can suppress just this part. However, it will only attempt to set non-nullable/required properties. So I see a few options. None are ideal.