I have this:
_gameService = new GameService();
ViewBag.Data = _gameService.JoinGame(userID, gameID, whoJoin);
return View("Game");
This code gets list of users that are ingame, and pass it to game view. Nothing fancy.
On the game view I need to get single values from ViewBag in diffrent places, like UserID, GameID, Moves etc.
Using Strongly Typed view is not an option, because I need list of users that are in game, and strongly-typed view give me only option to store single user(which won't work in multiplayer game)