I have no experience in this EF and therefore do not know the relevance of the issue.
Suppose I have tables called Student (StudentId, Name, Username, Address, DOB, DeptId, NavigationProp1Id ....) and in the Department table (Deptd, DeptName., NavigationProPid). Thus, if the structure of the table is as follows, when I use "contex.Studnets", I can get all the properties with it, including navigation properties, and if table 2 has other navigation properties, it can also be loaded. I'm right?
If so, does this cause any performance issues? Can I load only selected properties from Entity, for example, only UserName, Address from Student?
source share