I have a table that has a primary key that's an INT... I have another table, that has a foreignkey relationship to that first table, but it's a NULLABLE INT.
This is perfectly ok, and 100% acceptable to SQL... however LINQ to SQL is complaining about mismatched types ("int to Nullable[int]").
Error Message: Cannot create an association "Store_People". Properties do not have matching types: "PersonID", "ID".
How do I solve this so that the designer stops yelling at a 100% correct usage of SQL?