diff --git a/en/index.rst b/en/index.rst index e6e90f179..9536ee56d 100644 --- a/en/index.rst +++ b/en/index.rst @@ -93,6 +93,7 @@ Tutorials * :doc:`Composite Primary Keys ` * :doc:`Ordered associations ` * :doc:`Pagination ` + * :doc:`Override Field/Association Mappings In Subclasses ` Cookbook -------- diff --git a/en/toc.rst b/en/toc.rst index 5cdbe90c7..73f1f25b9 100644 --- a/en/toc.rst +++ b/en/toc.rst @@ -13,6 +13,7 @@ Tutorials tutorials/composite-primary-keys tutorials/ordered-associations tutorials/in-ten-quick-steps + tutorials/override-field-association-mappings-in-subclasses Reference Guide --------------- diff --git a/en/tutorials/override-field-association-mappings-in-subclasses.rst b/en/tutorials/override-field-association-mappings-in-subclasses.rst new file mode 100644 index 000000000..792d97887 --- /dev/null +++ b/en/tutorials/override-field-association-mappings-in-subclasses.rst @@ -0,0 +1,90 @@ +Override Field Association Mappings In Subclasses +------------------------------------------------- + +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 +using traits where the traits have mapping metadata. +This tutorial explains how to override mapping metadata, +i.e. attributes and associations metadata in particular. The example here shows +the overriding of a class that uses a trait but is similar when extending a base +class as shown at the end of this tutorial. + +Suppose we have a class ExampleEntityWithOverride. This class uses trait ExampleTrait: + +.. code-block:: php + +