diff --git a/en/reference/annotations-reference.rst b/en/reference/annotations-reference.rst index 1760ca731..0383831ef 100644 --- a/en/reference/annotations-reference.rst +++ b/en/reference/annotations-reference.rst @@ -8,10 +8,13 @@ Index ----- - :ref:`@Column ` +- :ref:`@ColumnResult ` - :ref:`@ChangeTrackingPolicy ` - :ref:`@DiscriminatorColumn ` - :ref:`@DiscriminatorMap ` - :ref:`@Entity ` +- :ref:`@EntityResult ` +- :ref:`@FieldResult ` - :ref:`@GeneratedValue ` - :ref:`@HasLifecycleCallbacks ` - :ref:`@Index ` @@ -22,6 +25,7 @@ Index - :ref:`@ManyToOne ` - :ref:`@ManyToMany ` - :ref:`@MappedSuperclass ` +- :ref:`@NamedNativeQuery ` - :ref:`@OneToOne ` - :ref:`@OneToMany ` - :ref:`@OrderBy ` @@ -33,6 +37,7 @@ Index - :ref:`@PreRemove ` - :ref:`@PreUpdate ` - :ref:`@SequenceGenerator ` +- :ref:`@SqlResultSetMapping ` - :ref:`@Table ` - :ref:`@UniqueConstraint ` - :ref:`@Version ` @@ -109,6 +114,17 @@ Examples: */ protected $height; +.. _annref_column_result: + +@ColumnResult +~~~~~~~~~~~~~~ +References name of a column in the SELECT clause of a SQL query. +Scalar result types can be included in the query result by specifying this annotation in the metadata. + +Required attributes: + +- **name**: The name of a column in the SELECT clause of a SQL query + .. _annref_changetrackingpolicy: @ChangeTrackingPolicy @@ -219,6 +235,39 @@ Example: //... } +.. _annref_entity_result: + +@EntityResult +~~~~~~~~~~~~~~ +References an entity in the SELECT clause of a SQL query. +If this annotation is used, the SQL statement should select all of the columns that are mapped to the entity object. +This should include foreign key columns to related entities. +The results obtained when insufficient data is available are undefined. + +Required attributes: + +- **entityClass**: The class of the result. + +Optional attributes: + +- **fields**: Array of @FieldResult, Maps the columns specified in the SELECT list of the query to the properties or fields of the entity class. +- **discriminatorColumn**: Specifies the column name of the column in the SELECT list that is used to determine the type of the entity instance. + +.. _annref_field_result: + +@FieldResult +~~~~~~~~~~~~~ +Is used to map the columns specified in the SELECT list of the query to the properties or fields of the entity class. + +Required attributes: + +- **name**: Name of the persistent field or property of the class. + + +Optional attributes: + +- **column**: Name of the column in the SELECT clause. + .. _annref_generatedvalue: @GeneratedValue @@ -597,6 +646,77 @@ Example: // ... fields and methods } +.. _annref_named_native_query: + +@NamedNativeQuery +~~~~~~~~~~~~~~~~~ +Is used to specify a native SQL named query. +The NamedNativeQuery annotation can be applied to an entity or mapped superclass. + +Required attributes: + +- **name**: The name used to refer to the query with the EntityManager methods that create query objects. +- **query**: The SQL query string. + + +Optional attributes: + +- **resultClass**: The class of the result. +- **sqlResultSetMapping**: The name of a SqlResultSetMapping, as defined in metadata. + + +Example: + +.. code-block:: php + +