Pulling a field from another table in Hibernate

Tin Wizard

I have two tables, which have a one-to-one relationship and look something like this:

OrderItem

ID    data1   data2   data3
1     a       b       c
2     d       e       f
3     g       h       i

DisputedItem

ID    data4
1     q
3     r

Is there a way to pull data4 into my Hibernate model for OrderItem without having a separate DisputedItemModel? Preferably using annotations.

Johnson Abraham

You can use Hibernate @Formula annotation, if you have annotation based mappings or <formula> tag if you are mapping by XML.

What formula can do is help you extract a value by a query and map it to a field in your OrderItem domain model. This field can be from any table but the query thats used to map the property should return the indented field type.

You can use following URL for reference Hibernate Formula

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Adding a field from another table to results

From Dev

How to create new field in view with some offset (field of table) from existing field (another field of table)?

From Dev

Copy Field contents from one Table to another table - FileMaker

From Dev

SQLite, select where field 'like' field from another table

From Dev

Conditional update pulling from another table - Access syntax error

From Dev

Pull field from another table in MVC

From Dev

Pulling posts from another WordPress site

From Dev

Field involving multiple rows from another table

From Dev

Pulling a field from mysql table with php

From Dev

Refresh a field from another table [Django]

From Dev

Set field to random value from another table

From Dev

Hibernate HQL query get data from table associated with another table

From Dev

Pulling records from one table (products) depending on a value in another (department)

From Dev

MYSQL Copy field from one table to another table

From Dev

Pulling results from one function into another function

From Dev

Pulling a field from a list based on second list

From Dev

Using values from a field in one table as column name for field in another

From Dev

Adding a field from another table to results

From Dev

select field from table in another field from another table

From Dev

Pulling data from one table to use in another query for SQL Server?

From Dev

Pull field from another table in MVC

From Dev

sql - show count of field from another table

From Dev

Select Additional Field from another Table

From Dev

Pulling a field from mysql table with php

From Dev

Add field in a Gii form from another table

From Dev

Limit values for a field to entries in another table in hibernate

From Dev

Delete trigger and getting field from another table

From Dev

Call field from another table in select firebase

From Dev

DRF: validate a field from another table

Related Related

  1. 1

    Adding a field from another table to results

  2. 2

    How to create new field in view with some offset (field of table) from existing field (another field of table)?

  3. 3

    Copy Field contents from one Table to another table - FileMaker

  4. 4

    SQLite, select where field 'like' field from another table

  5. 5

    Conditional update pulling from another table - Access syntax error

  6. 6

    Pull field from another table in MVC

  7. 7

    Pulling posts from another WordPress site

  8. 8

    Field involving multiple rows from another table

  9. 9

    Pulling a field from mysql table with php

  10. 10

    Refresh a field from another table [Django]

  11. 11

    Set field to random value from another table

  12. 12

    Hibernate HQL query get data from table associated with another table

  13. 13

    Pulling records from one table (products) depending on a value in another (department)

  14. 14

    MYSQL Copy field from one table to another table

  15. 15

    Pulling results from one function into another function

  16. 16

    Pulling a field from a list based on second list

  17. 17

    Using values from a field in one table as column name for field in another

  18. 18

    Adding a field from another table to results

  19. 19

    select field from table in another field from another table

  20. 20

    Pulling data from one table to use in another query for SQL Server?

  21. 21

    Pull field from another table in MVC

  22. 22

    sql - show count of field from another table

  23. 23

    Select Additional Field from another Table

  24. 24

    Pulling a field from mysql table with php

  25. 25

    Add field in a Gii form from another table

  26. 26

    Limit values for a field to entries in another table in hibernate

  27. 27

    Delete trigger and getting field from another table

  28. 28

    Call field from another table in select firebase

  29. 29

    DRF: validate a field from another table

HotTag

Archive