Redo The Web » Comparing Propel, Doctrine and sfPropelFinder - 0 views
-
federico balderas on 23 Jun 10"Retrieving an article by its primary key // Propel $article = ArticlePeer::retrieveByPk(123); // Doctrine $article = Doctrine::getTable('Article')->find(123); // sfPropelFinder $article = sfPropelFinder::from('Article')->findPk(123);"
-
federico balderas on 23 Jun 10Comparacion de Propel y Doctrine