Is this normal - When I create inheritied entities with an Access database (Self Servicing, Target Per Entity), I have 2 PKs - the Parent Table AND Child Tables PK.
For example:
My Parent
Parent_PK - Replication ID
Field 1
Field 2
My Child Table
Child_PK - ReplicationID
Child_Field1
Child_Field2
My Generated Child Entity Looks Like
Parent_PK - Replication ID
Field 1
Field 2
Child_PK - ReplicationID
Child_Field1
Child_Field2
When I last used inheritied entities in SQL Server, I believe the Parent's table PK is hidden when an entity is created? So basically should both PKs be shown? Is there a way to hide one PK (to avoid confusion).
Thanks!