Comment récupérer une collection en filtrant sous Magento

Voici une petite astuce pense bête pour les développeurs Magento :

  $collection =  Mage::getModel('magasin/codepostal')->getCollection()
	->addFieldToFilter('magasin',array('in'=>$this->getMagasin()->getId()));
  return $collection;