hi, is there a way to get last inserted ID?
Can you try $this->getAdapter()->getConnection()->lastInsertId();
The getConnection() method isn't in the AbstractInterface but is in the PDOAdapter which implements that interface. So, any PDO based connection should be able to use the above call.
Please make a PR for docs to include this.
Most helpful comment
Can you try
$this->getAdapter()->getConnection()->lastInsertId();The
getConnection()method isn't in theAbstractInterfacebut is in thePDOAdapterwhich implements that interface. So, any PDO based connection should be able to use the above call.