foreign key generation not working on 7.x builds, works on 6.x #28392
Labels
area-save-changes
closed-fixed
The issue has been fixed and is/will be included in the release indicated by the issue milestone.
customer-reported
regression
type-bug
Milestone
I have 2 classes that correlate to 2 tables.
for simplicity i'll repro the smallest possible versions.
Class one, which has the bulk of the data is created by the ERP software I'm writing an application against. We'll call it MainRow.
Class two we'll call Extension, because it's from a table that was created by another third party developer, not the same as the company that created the table for MainRow. The third party software uses this extension table to tack on extra data later as part of a separate but integrated application to use with the ERP software, without changing the MainRow that the ERP software has.
I have the main row configured with this one to one relationship:
The extension table was created with Int64 as the foreign key, which references the Identity Column of the Main Row.. because... I guess... whoever created it likes adding unnecessary challenges in life.. or something..
Anyway, I have no ability to change the data type of the FK on the server, so I have to do a conversion which i do like this:
This conversion works fine in 6, not in 7.
in any 7 version I've tried get this:
The text was updated successfully, but these errors were encountered: