1
0
mirror of synced 2024-12-15 15:46:02 +03:00

Fixed some escaping issue with xml reference

This commit is contained in:
Benjamin Eberlei 2010-08-01 15:47:34 +02:00
parent a34bab7f1e
commit 93c061b7a5

View File

@ -147,7 +147,7 @@ used for primitive types that are not the ID of the entity. For the ID mapping y
<field name="age" type="integer" nullable="true" /> <field name="age" type="integer" nullable="true" />
<field name="isActive" column="is_active" type="boolean" /> <field name="isActive" column="is_active" type="boolean" />
<field name="weight" type="decimal" scale="5" precision="2" /> <field name="weight" type="decimal" scale="5" precision="2" />
</entity> </entity>
Required attributes: Required attributes:
@ -433,7 +433,7 @@ The mapping defaults would lead to a join-table with the name "User_Group" being
</many-to-many> </many-to-many>
</entity> </entity>
Here both the <join-columns> and <inverse-join-columns> tags are necessary to tell Doctrine for which side the Here both the `<join-columns>` and `<inverse-join-columns>` tags are necessary to tell Doctrine for which side the
specified join-columns apply. These are nested inside a `<join-table />` attribute which allows to specify specified join-columns apply. These are nested inside a `<join-table />` attribute which allows to specify
the table name of the many-to-many join-table. the table name of the many-to-many join-table.
@ -453,10 +453,10 @@ operations in the `<cascade />` element inside any of the association mapping ta
Besides `<cascade-all />` the following operations can be specifed by their respective tags: Besides `<cascade-all />` the following operations can be specifed by their respective tags:
* <cascade-persist /> * `<cascade-persist />`
* <cascade-merge /> * `<cascade-merge />`
* <cascade-remove /> * `<cascade-remove />`
* <cascade-refresh /> * `<cascade-refresh />`
+++ Join Column Element +++ Join Column Element