from("Companies") ->where("`name` = :name OR `id` = :cid") ->params(["name" => "winco", "cid" => 20]) ->join("LEFT JOIN", "Invoices") ->using("id") ->execute() ->asModels(new Company);