I've 2 tables
DeviceType Table
id Name
1 Device Type 1
2 Device Type 2
Device Table
id Name Device Type Id (fk)
1 Device1 1
2 Device2 1
3 Device3 2
What I want is to query the data from device table with device type name using LINQ Methods. I couldn't find the Include method to use here.
I'm trying to get this in result
id Name DeviceType Name
1 Device1 Device Type 1
2 Device2 Device Type 1
3 Device3 Device Type 2