예제 #1
0
파일: Query.php 프로젝트: brikou/zend_cloud
 /**
  * LIMIT clause (how many rows to return)
  *
  * @param  int $limit
  * @return \Zend\Cloud\DocumentService\Adapter\WindowsAzure\Query
  */
 public function limit($limit)
 {
     $this->_azureSelect->top($limit);
     return $this;
 }