Hi,
Imagine there are these two tables in database:
[T_A]
A_ID
A_TYPE
B_ID
[T_B]
B_ID
B_NAME
I want to build a view in this way:
[V_A_B]
A_ID
A_TYPE
B_ID
B_NAME
And then add this view to my model. In this scenario, can I perform insert/update/delete operations against T_A table with Oracle provider?
Thanks in advance,
Dominik.