score:0

the views are also available in the list of tables when you specify the connection and the schema. enter image description here

score:1

you use the same syntax as you would for creating entity classes for a table. the only differences are: 1) typically views are read only, thus your entity will likely only be used as read only, and 2) like all entities you need to have a primary key, thus your view will need to either have one column that has unique identity values, or a combination of columns that can be used as a unique identity.


Related Query

More Query from same tag