propel:
products:
_attributes: { phpName: Product }
id: ~
name: { type: VARCHAR, size: '40', required: true }
stock_count: { type: INTEGER, required: true }
price: { type: INTEGER, required: true }
class Product extends BaseProduct {
public function getStockValue() {
return $this->getStockCount() * $this->getPrice();
}
}
Когда можно будет без лишних заморочек сделать
SELECT * FROM products ORDER BY getStockValue() — вот тогда-то и наступит рай земной, коммунизм и вендокапец. А пока, увы, всё с ORMами грустно.