Hello
Have been able to find similar questions to this but they don't explain exactly the problem I'm having.
I've inherited a database schema that I can't change, and it's slightly ropey, so LINQ doesn't really like it.
We have:
Table A [child table]
OrderId NULL int
Order Table
Id NOT NULL Primary Key Int
There is no foreign-key association between the two in the database.
I can add both to the LINQ designer, and also add an association no problem.
But the generated classes do not have an association, for example ENTITYSET or ENTITYREF between the two.
I've found other answers and this set up seems to be okay.
Any gotchas/glitches why this would be the case for me?
Thanks