Exemplo n.º 1
0
        public Dictionary <int, int> findMemberInGame(int gameId)
        {
            Dictionary <int, int> mapping = new Dictionary <int, int>();
            var members = db.getMembersInGame(gameId);

            return(members.ToDictionary(m => m.Memberid, m => m.memberinGameID));
        }