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.
访问多对多关联表。
我需要向用户添加角色,但UsersRoles实体框架没有将表映射为表:要访问它,我需要通过Users表来访问它。
UsersRoles
Users
换句话说,UsersRoles如果它是关联而不是表,我如何通过 C# 向表中添加一些东西?
只需将其添加到集合属性之一:
myUser.Roles.Add(someRole);