- Issue created by @daffie
The conditions in joins in dynamic queries can be and are mostly SQL strings. The conditions can also be a Condition object, like they are in Select queries. The problem is that MongoDB does not support SQL strings.
// MongoDB does not support SQL string conditions.
$connection = \Drupal::database();
$query = $connection->select('node', 'n');
$query->join('inner', 'comment', 'c', '[n].[nid] = [c].[nid]');
In π Make the conditions in joins in dynamic queries use Condition objects Needs review we changed it all modules with the exception of the views module. This issue is about doing the same for the views module.
Make the conditions in joins in dynamic queries use Condition objects in the Views module
TBD
TBD
TBD
None
TBD
Postponed
11.0 π₯
Last updated