ACR Rules

  1. Home
  2. Docs
  3. ACR Rules
  4. Performance (29)
  5. Retrieves over the same association should be grouped together

Retrieves over the same association should be grouped together

Released in version 1.6 (03 March 2020)

When retrieving it is inefficient to have multiple constraints over the same association. If possible, it is advised to group them together.

Check the expert webinar series for more information.

Non-compliant example:

[Courses.Subscription_Person/Courses.Subscription/Grade < 5 or Courses.Subscription_Person/Courses.Subscription/Grade > = 7]

Compliant example:

[Courses.Subscription_Person/Courses.Subscription
[Grade < 5 or Grade > = 7]
]