:25 PM, Sergio Perez wrote:
> Hi everybody,
>
> After import (doctrine:mapping:import) from a existing database, I try
> to create the repositories with
>
> app/console doctrine:generate:repositories MyBundle and I get “SKIP no
> custom repository for MyBundle\Entity\entity
Hi everybody,
After import (doctrine:mapping:import) from a existing database, I try to
create the repositories with
app/console doctrine:generate:repositories MyBundle and I get “SKIP no
custom repository for MyBundle\Entity\entityname
What does it means?
What am I doing wrong?
Th
Hello, I have the follow problem:
When I try doctrine:generate:entities AplicationNameBundle
I get twice a PHP Fatal error: Call to a member function getShortName() on a
non-object in Symfony\...\GenerateEntitiesDoctrineCommand.php on line 63
Before do that I’ve generated my schema from
Hello,
Is there someone who tell me how can I insert new data in the DB.
For retrieving, I do:
$em = $this->get('doctrine.orm.entity_manager');
$data = $em->find('MyBackBundle:', $id);
if (!$data) {
throw new NotFoun
Hello,
I’ve spent a lot of time trying with forms in Symfony2, but I don´t got
results.
I want to have the typical system which let me Edit, Create and Delete a
record from a database.
I’ve defined:
1) MyBundle/Entity/articles.php:
namespace My\BackBundle\Entity;
/**