1
0
mirror of synced 2025-03-24 08:53:52 +03:00

[DDC-1872] address comments from beberlei

This commit is contained in:
Luis Cordova 2012-07-29 23:33:18 -05:00
parent 26608fed5a
commit 6c932af0a0
3 changed files with 6 additions and 4 deletions

View File

@ -93,7 +93,7 @@ Tutorials
* :doc:`Composite Primary Keys <tutorials/composite-primary-keys>` * :doc:`Composite Primary Keys <tutorials/composite-primary-keys>`
* :doc:`Ordered associations <tutorials/ordered-associations>` * :doc:`Ordered associations <tutorials/ordered-associations>`
* :doc:`Pagination <tutorials/pagination>` * :doc:`Pagination <tutorials/pagination>`
* :doc:`Override Mappings With Annotations <tutorials/override-mappings-with-annotations>` * :doc:`Override Field/Association Mappings In Subclasses <tutorials/override-field-association-mappings-in-subclasses>`
Cookbook Cookbook
-------- --------

View File

@ -13,7 +13,7 @@ Tutorials
tutorials/composite-primary-keys tutorials/composite-primary-keys
tutorials/ordered-associations tutorials/ordered-associations
tutorials/in-ten-quick-steps tutorials/in-ten-quick-steps
tutorials/override-mappings-with-annotations tutorials/override-field-association-mappings-in-subclasses
Reference Guide Reference Guide
--------------- ---------------

View File

@ -1,5 +1,5 @@
Override Mappings With Annotations Override Field Association Mappings In Subclasses
---------------------------------- -------------------------------------------------
Sometimes there is a need to persist entities but override all or part of the Sometimes there is a need to persist entities but override all or part of the
mapping metadata. Sometimes also the mapping to override comes from entities mapping metadata. Sometimes also the mapping to override comes from entities
@ -86,3 +86,5 @@ The case for just extending a class would be just the same but:
{ {
// ... // ...
} }
Overriding is also supported via XML and YAML.