where() public method

Adds the WHERE clause.
public where ( string $condition, mixed $value = null )
$condition string
$value mixed
コード例 #1
0
ファイル: Query.php プロジェクト: spartaksun/orientdb-query
 /**
  * {@inheritdoc}
  */
 public function where($condition, $value = null)
 {
     return $this->command->where($condition, $value);
 }