Try to remove the column of external properties from the Entity set using the construction of the entity model, it will solve your problem.
for example
We have two tables: the client , and the other - the order , when using the entity model, we added a relationship between customers and orders, when we do this Ado.net entity structure, I will add navigation properties for both tables.
Like Customer.Orders - Here is a list of order orders. Customer
One is a lot of relationships.
So, we need to remove the property from the name CustomerId [foreign key column] from the Order set.
For reference:
http://social.msdn.microsoft.com/forums/en-US/adodotnetentityframework/thread/2823634f-9dd1-4547-93b5-17bb8a882ac2/
Venkat
source share