Hi,
I have problems working with 3 tables when doing the PersMng.SaveChanges() when I inserted a new instance of Table_1
Table_1
pkNo_1
Table_2
pkNo_2
Table_Link
No_1 (key to Table_1)
No_2 (key to Table_2)
MoreInfoColumn
There is no primary key on Table_Link because its the 'combination' of the two column No_1 and No_2 (without having a single column of combination!)...
The error :
Save failed - Cannot persist entities that do not have a primary key: 'Model.Table_Link'
Is there a solution without adding a combined column that would also be a primary key?
seb