I have a project where I am using Views and Stored Procedures with EF5. I have an EDMX with the views in the designer and am trying to manually create the associations between the PK and FK across 2 views, when doing so I first get this error:
Error 5 Error 3027: No mapping specified for the following EntitySet/AssociationSet - vw_borrowervw_borrower_extension.
Then if I do table mapping on the association and select the pk and fk I receive this error:
Error 5 Error 3007: Problem in mapping fragments starting at lines 309, 351:Column(s) [borrower_fk] are being mapped in both fragments to different conceptual side properties.
In the one view the primary key name is borrower_pk and in the related view the foreign key is named borrower_fk.
Any help would be much appreciated.
Thanks!