在 Kohana 查询中,我只需要检索一个具有相同 id 的元素。我在模型中有一个方法:
public function next_products_images($id)
{
return $this->where('product_image_product', '>=', $id-5)->limit(5)->find_all();
//for taking the previous five product pictures
}
但问题是,从该方法生成的所有上述结果中,我只需要那些具有“product_image_product”不同的结果。这可以使用 Kohana ORM 完成吗?
非常感谢!