CodeExplorer whereIn example
protected function doFind(bool
$singleton,
$id = null
) { $builder =
$this->
builder();
if ($this->tempUseSoftDeletes
) { $builder->
where($this->table . '.' .
$this->deletedField, null
);
} if (is_array($id)) { $row =
$builder->
whereIn($this->table . '.' .
$this->primaryKey,
$id) ->
get() ->
getResult($this->tempReturnType
);
} elseif ($singleton) { $row =
$builder->
where($this->table . '.' .
$this->primaryKey,
$id) ->
get() ->
getFirstRow($this->tempReturnType
);
} else { $row =
$builder->
get()->
getResult($this->tempReturnType
);
} return $row;
}