I have set my resource model up, my model for it and I have pulled Item 1 from the database...
How do I select rows from the database that have a 'quote_id' of say 9?
public function getQuoteProducts()
{
$quoteDataModel = $this->_quoteDataModelFactory->create();
$item = $quoteDataModel->load(1);
var_dump($item->getData());
...And so on.
}