what is best way to model many-to-many relationship?
lets say we have a two classes , Team and Player
public class Player { public Team[] Teams {get;set;} } public class Team { public Player[] Players {get;set;} }
Perfectly reasonable.