Tagged Questions
1
vote
1answer
90 views
Symfony 1.4: Find records with no related values
I have two tables with related with a many-to-many relationship. I am trying to find all of the rows that have no related values. Here's an example:
Table 1: Categories
Table 2: CategoryItems
...
1
vote
0answers
120 views
Doctrine 1.2 does not set reference field when loading one-to-one relation
I have simple schema with one-to-one relation:
Site:
columns:
name: { type: string(255) }
User:
columns:
name: { type: string(255) }
site_id: { type: integer }
relations:
Site: ...
0
votes
2answers
76 views
Symfony relation with prefix
I'm struggling with the connection/relation from the main class/table to a related class in symfony 1.4 with doctrine. The relation is
$relatedClass->identifier == 'e'.$mainClass->id;
I know ...
0
votes
2answers
2k views
Doctrine Class “..\..” has no association named “…”
I hope you can help me with this problem because I really cannot see what is wrong here.
I have 2 entities: RokZaPrijavuProjekta AND Predmet.
RokZaPrijavuProjekta:
/**
* ...
0
votes
1answer
607 views
Doctrine ORM Conditional Association
i'm building a Q&A site and my questions, answers and comments are on the same posts table. But their postType is different. I can get answers for a question and comments for an answer with this ...
1
vote
1answer
826 views
symfony many to many in embedded form
I have a problem with embbed form from Model which has many to many relation. The embedded form will save the model correctly but will not save many to many relations.
Example:
Schema.yml:
Mother:
...
0
votes
1answer
2k views
YAML Mapping exception on Doctrine 2
I created my database and tables using phpMyAdmin. I setup the relations there aswell.
I then wanted to get Doctrine 2 to create the YAML files for me by do this command:
php doctrine ...
0
votes
1answer
330 views
Doctrine generate models - problem with relation type
I am trying generate doctrine models from yaml schema
I have schema like that:
Product:
columns:
id:
type: integer(5)
primary: true
unsigned: true
...
0
votes
1answer
151 views
Facultative relation with Doctrine ORM
How should be implemented facultative one-to-one relation in Doctrine ORM and Symfony? Suppose there are some folders represented in database. Each folder can have a default icon or some custom icon ...