LINQ weak relation between tables
- by cleric
I have two tables with a weak relation.
I need get a text value from one table using a key from another.
I am using the following C# LINQ code:
City = rea.tRealEstateContact.tPostnumre != null ? rea.tRealEstateContact.tPostnumre.Bynavn : string.Empty
But when the key cannot be found in the table 1(tPostnumre), an exception is thrown.
How should I do this?