我刚刚开始了一个使用 LINQ to SQL 的项目,并且遇到了多对多问题。我找到了很多可能的解决方案,我选择了这个。
无论如何,受影响的数据库表如下所示:
Customer (idcustomer,other stuff..)
Customer_Role(idcustomer, idrole, other_attribute_I_want_to_keep )
Role(idrole, other stuff)
现在,我该如何处理“other_attribute_I_want_to_keep?最好是这样:
客户 c.Role.other_attribute_I_want_to_keep,但我找不到可能的解决方案。
谢谢