I have tables linked by FK, I query on the first table using entity framework. I expected to be able to do the following
<table1>.<table2>
in .NET
Is this not the case? How would I get the whole chain of tables available to me by querying on the first table?
You can fetch related items like;
In this case, all items for table A and all related items from table B are fetched.
Also you can use a typed version of Include function like;