Smile\ElasticsuiteVirtualCategory\Model\ResourceModel\Category\Product\Position::getBaseSelect PHP Method

getBaseSelect() private method

Init a base select with the main table.
private getBaseSelect ( ) : Zend_Db_Select
return Zend_Db_Select
    private function getBaseSelect()
    {
        $select = $this->getConnection()->select();
        $select->from(['main_table' => $this->getMainTable()], []);
        return $select;
    }