The Jade 2025 release focuses on modernising the developer experience and helping you build faster, smarter, and more scalable applications.
We have a facility in our system to extract configured data classes and attributes to a SQL database - this relies on constructing transient Jade methods to pass in the attributes we want to extract as parameters to the transient method.
Some of our classes have more than 128 attributes, but 129 is the limit for method parameters. Is there any chance this limit could be increased?
Have you considered using an alternate strategy to pass in the "attribute list" parameters, rather than using individual parameters for each attribute you want to extract?
eg: You could use a JadeDynamicObject (JDO) as the single parameter, instead of a long list of individual parameters, and then you can add as many "attributes" to that JDOs "extract list" as you want, without reaching the current JadePlatform method parameter limit.