2

我正在尝试为一个游戏创建一个 linq 连接,该游戏将使用以下查询选择玩家不玩的所有位置:

var m_player_positions = from pl in tfs.Players
                         join pos in tfs.Positions
                             on new { X = true } equals new { X = (pl.MainPositionID != pos.PositionID) }
                         select new {PlayerName = pl.Forename, Position = pos.Name};

我现在知道我无法在 join equals 的右侧使用 pl ,也不能在左侧使用 pos ,有没有办法用 linq 执行这个特定的连接?

4

2 回答 2

3

您基本上可以使用SelectMany

var m_player_positions =
    tfs.Players.SelectMany(
                    pl => tfs.Positions
                             .Where(pos => pl.MainPositionID != pos.PositionID)
                             .Select(pos => new {PlayerName = pl.Forename, Position = pos.Name}));
于 2013-06-18T07:47:49.927 回答
2

我被打败了,但给你。

  var m_player_positions = from pl in tfs.Players
                         join pos in tfs.Positions
                             on pl.MainPositionID == pos.PositionID
                         select new {PlayerName = pl.Forename, Position = pos.Name};

选择“等于”的限制是为了确保在连接中只使用等式。这是因为具有更高级逻辑的查询无法可靠地转换为关系语句。

考虑本文档的第二段。 http://msdn.microsoft.com/en-us/library/bb311040.aspx

于 2013-06-18T07:37:26.950 回答