Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个非常简单的数据库模式来说明我的问题:
有3张桌子。T1、T2 和 T3。
T1 与 T2 具有一对多的关系。
T2 和 T3 是一对多的关系。
如何获取 T3 中与 T1.Id (T1 中的主键) 相关的所有行?
尝试
var t3Rows = dataContext.T3.Where(x => x.T2.T1.Id == id);