find() public method

Change the query type to find.
public find ( )
示例#1
0
 /**
  * Change the query type to find and optionally set and change the class being queried.
  *
  * @param string $documentName
  * @return Builder
  */
 public function find($documentName = null)
 {
     $this->setDocumentName($documentName);
     parent::find();
     return $this;
 }