Add a CSV Export of Selected Tournament (can stack multiple rankings but the UI get messy)

This commit is contained in:
2019-05-30 03:41:24 +02:00
parent af79011d14
commit 0e08bec6f3
3 changed files with 122 additions and 12 deletions

View File

@@ -134,7 +134,7 @@ namespace LaDOSE.Business.Service
}
result.Games = tournaments.Select(e => e.Game).ToList();
result.Games = tournaments.Select(e => e.Game).Distinct((game, game1) => game.Name==game1.Name).ToList();
return result;
}