You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because column property path has syntax specific for Property Access component, and sort property path inherits from it, in some cases, the path would be not supported by the Doctrine. Because of that, bundle should perform some tricks to "guess" a valid DQL:
Because column property path has syntax specific for Property Access component, and sort property path inherits from it, in some cases, the path would be not supported by the Doctrine. Because of that, bundle should perform some tricks to "guess" a valid DQL:
?
);[]
);.
);For example, sorting by the following column:
currently results in an exception:
because we're mixing Property Access component syntax with DQL:
With the newly added "guesser", the sorting should be executed on the
category.name
path, without specifying it manually.More examples - both property paths should be "guessed" as
category.name
:[category][name]
product?.category[name]
The text was updated successfully, but these errors were encountered: