如何通过行号查找结果?

时间:2013-08-27 03:07:49

标签: cakephp cakephp-2.1

说我有两个型号,Foo belongsTo Bar:

$this->Foo->find('first',array(
    'conditions'=>array(
        'barRowNumber'=>$barRowNumber,
        'fooRowNumber'=>$fooRowNumber)));

我不能只执行auto_increment id,因为当我添加和删除记录时它们会跳过。那么如何在CakePHP中使用行号作为查找查询的参数?

1 个答案:

答案 0 :(得分:0)

  1. 如果您没有id,那么您应该计算搜索发生的行。
  2. 如果您有ID,则$this->Foo->id = $value是关键
  3. 如果您有其他搜索值,则$this->Foo->findbyYourValue会执行