I have a simple database that has the following relation.
Each Server has one Game.
now the table Game is just a list of the different games that are possible to have on the server.
However, when I do a @server.game, I get a SQL exception because it's trying to find the server's INSTANCE of it's game (Select * from games where games.server_id = 1) I'd really like it just to do (select * from games where games.id = @server.game_id)
Any clues as to how to perform this association?