Hi,
I am trying figure out how to update base type to child type entity. For example we have two tables EmpGeneral and EmpGeneralUnique1. We are able to fetch EmpGeneralUnique1 using fetchNewEntity on EmpGeneral without using prefetch path.
employeeEntity = adapter.FetchNewEntity(Of EntityClasses.EmpGeneralEntity)(filter)
However, I cannot figure out how to update existing EmpGeneralEntity to be of type EmpGeneralUnique1.(In database layer it means creating a new record in EmpGeneralUnique1 table with foreign key linked to the EmpGeneral record)
Thanks
Sabina