JADE Environment Development Ideas

What's new in the JADE 2025 release?

IMPROVED DEVELOPER EFFICIENCY. ENHANCED INTEGRATIONS. NEW WEB DEVELOPMENT FRAMEWORK

The Jade 2025 release focuses on modernising the developer experience and helping you build faster, smarter, and more scalable applications.


Start your update to JADE's latest release

Increase the method parameter number limit

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?

  • Dave Patrick
  • Jun 26 2026
  • Needs review
  • Attach files
  • BeeJay Johnstone commented
    28 Jun 08:46pm

    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.