Hi
what would be the best way to handle a m:n relationship when using databinding on a aspx page? As I understand you can only databind to a single class. Would I need to create a new class inheriting from User and adding a bit of UserRole?
For example I have a User,Role and UserRole Entities, the UserRole Entity linking the User and Role Entities. I add my UserEntity to a page and can databind the fields. I also want to add the RoleID from the UserRole Entity so the user can assign a role when creating a user (Im using a formview). So that when saved the UserEntity is saved and the UserRoleEntity is also saved pulling in the UserID from the just saved UserEntity and the RoleID from the page?
Thanks
Tim