Jeg foretrækker mindre kode med kagemodel/bordnavnekonvention (db-tabel products
- modelnavn Product
, db tabel prices
- modelnavn Price
) til yderligere projektledelse. Det ser ud til, at du vil gøre:
$results = $this->Product->find('all', array(
'fields' => array(
'Company.name',
'Product.feature',
'Price.price'
),
'joins' => array(
'LEFT JOIN companies AS Company ON Product.company_id = Company.id
LEFT JOIN prices AS Price ON Product.id = Price.product_id'
),
'conditions' => array(
'Company.name LIKE' => '%'.$search_term.'%',
'Product.feature' => $product_feature,
'Price.price <' => $price
),
));
men hvis Du ønsker at få produkter med Dine alle kriterier (virksomhed og pris) kun , Du skal bruge INNER JOIN
, og GROUP BY
Produkt (group
mulighed).
Også, hvis du ønsker at få alle produkter med mange priser og firmaresultater og du indstiller/linker modelrelationer, kan du bruge contain
mulighed, f.eks.:
$contain = array(
'Company' => array(
// ...
'conditions' => array('Company.name LIKE' => '%'.$search_term.'%'),
// ...
),
'Price' => array(
// you can set: 'fields' => array('id', ...),
'conditions' => array('Price.price <' => $price),
// you can set order: 'ordder' => '....'
)
);
$this->Product->attach('Containable');
$post = $this->Product->find('all', array(
// ...
'contain' => $contain,
'conditions' => array('Product.feature' => $product_feature),
// ...
));
Så du får alle produkter med feature => $product_feautre
, og du får LEFT JOIN
virksomheder og priser til disse produkter.
Håber dette hjælper.