You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of DDC-3292, it is not possible to disable the column prefix for embeddables in XML mappings. This example shows that "false" is used as column prefix:
Jira issue originally created by user @Ocramius:
As of DDC-3292, it is not possible to disable the column prefix for embeddables in XML mappings. This example shows that
"false"
is used as column prefix:<embedded name="address" class="Address" column-prefix="false" />
A possible solution is to use something like:
<embedded name="address" class="Address" use-column-prefix="false" />
or
<embedded name="address" class="Address" use-column-prefix="true" />
The text was updated successfully, but these errors were encountered: