需要帮助在一个查询中选择 3 个相关的数据库表。结果应该被复制到我的视图模型中。字节我找不到如何编写查询。
我有这样的:
Dim l = db.myEntity.Where(Function(m) m.regnr.Contains(regnr) And m.ExtLok = True).Select(Function(m) m.Customer).tolist()
这个查询只选择了一对一相关的表“客户”,所以我的问题是,我如何选择更多的表?我试过这个
Dim l = db.myEntity.Where(Function(m) m.regnr.Contains(regnr) And m.ExtLok = True).Select(Function(m) m.Customer, m.Cars).tolist()