I am creating a softball schedule app that will be used by multiple teams.
I have a table the has team info - id, name, coach, etc
I have a table that has game info - id, date, teamid, opponentid, outcome
Here are the two models:
namespace softball.Models
{
[Table("tblTeams")]
public class...