Skip to content

Instantly share code, notes, and snippets.

@filipececcon
Created July 25, 2017 16:36
Show Gist options
  • Save filipececcon/7aad80767bffca5ca117681dcc965699 to your computer and use it in GitHub Desktop.
Save filipececcon/7aad80767bffca5ca117681dcc965699 to your computer and use it in GitHub Desktop.
public override IEnumerable<Player> GetAll()
{
using (var db = new SqlConnection(ConnectionString))
{
return db.GetAll<Player, Team, Player>((player, team) =>
{
player.Team = team;
return player;
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment