Relational icon indicating copy to clipboard operation
Relational copied to clipboard

Include filters support for Mapping shortcuts

Open mrsoto opened this issue 10 years ago • 0 comments

Mapping shortcuts is a great feature, not only to improve flexibility, this allow a kind of generic query, for example:

  if ($table=='A'){
    $mapper->tableX = $mapper->tableA;
  } else {
    $mapper->tableX = $mapper->tableB;
  }
  $mapper->tableX(array(...))->tableY->fetch()

But mapper do not support filer like this. Primary key works.

mrsoto avatar Jan 19 '16 15:01 mrsoto