Is there a trick for visualizing a many to many assocation in the Visual Studio Class Designer? I have an Employee entity and a Team entity. So each entity has a list of his counterpart.
Associations are possible to show in the Class Designer, but only for 0..1 mulitplicity.
Or does anyone has experience with VS 2010 and the new architecture class diagram? What I miss there is the generated classes oO ... where they are?!
You can do it on VS 2008
I tested it with 2 classes:
public class Team
{
public List<Employee> employees { get; set; }
}
public class Employee
{
public List<Team> teams { get; set; }
}
Added these classes to the diagram, expanded them to show class members, and then selected "Show as Collection Association" (twice). It then shows a diagram with 2 arrows