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.
我有大约 10,000 条记录的数据表,其中一个列 st_ID,我想过滤的是基于另一个数据表的数据表,其中一个列是 bt_ID。
我只想要 linq 中的这个解决方案
谢谢
太模糊了,这两者之间有没有外键关系?
在任何情况下,您都可以使用Join语法示例:
Join
from t1 in context.Table1 join t2 in context.Table2 on t1.st_ID equals t2.bt_ID select............
如果您有正确的 FK 关系,您应该能够直接使用属性进行查询。