I have two objects that I've created in VS 2010 using the graphical model editor for the edmx file. The simplified descriptions are as follows:
PLAN
Name (string)
InitialDescription (association)
FinalDescription (association)
DESCRIPTION
Text (string)
Here's what I set in the dialogue that creates the associations.
INITIAL DESCRIPTION
-a plan has 1 description, a description may have zero or one plan
-Navigation property was checked for Plan only (e.g. Plan.InitialDescription references the description, but there's no Description.Plan)
-the "add foreign key" checkbox is greyed out
This generates a InitialDescription_Id field in my database in my Plan table.
FINAL DESCRIPTION
-a plan has 0 or 1 description, a description may have 0 or 1 plan
-Navigation property was checked for Plan only
-the "add foreign key" checkbox is greyed out
This generates a PlanFinalDescription_Description_Id field in my Description table.
My question in this case, is why doesn't the "final description" association result in a FinalDescription_Id field in the Plan table (instead of the abovementioned field in the Description table)?
More generally, what are the rules that define where/when foreign keys will be added to generated SQL tables?