ASP.net 发布新条目时一切正常,但之后调用时,数据消失

31moq8wy  于 2022-11-26  发布在  .NET
关注(0)|答案(1)|浏览(143)

我有两门课:游戏和位置。我的API的目的是我可以创建一个新的游戏,并在该游戏中从数据库中随机添加2个位置。
游戏类别:

public class Game
{
    public Game()
    {
        GameLocations = new List<Location>();
        GameSuspects = new List<Suspect>();
        GameClues = new List<Clue>();
    }

    [Key]
    public int GameId { get; set; }    
    public bool GameWon { get; set; }

    public ICollection<Location> GameLocations { get; set; }
    public ICollection<Suspect> GameSuspects { get; set; }
    public ICollection<Clue> GameClues { get; set; }

}

位置类别:

public class Location
{
    public double LocLat { get; set; }
    public double LocLong { get; set; }
    public string LocDescription { get; set; }
    public string LocName { get; set; }
    //public ICollection<GameLocation> GameLocations { get; set; }

    [Key]
    public int LocId { get; set; }
}

下面是我尝试创建一个新游戏并添加位置的方法:

[HttpPost("newgame")]
    public IActionResult CreateNewGame()
    {
        var newGame = new Game();

        // add random locations
        var location1 = _dbcontext.Locations.Find(1);
        var location2 = _dbcontext.Locations.Find(3);

        newGame.GameLocations.Add(location1);
        newGame.GameLocations.Add(location2);            

        //add suspects
        var suspect1 = _dbcontext.Suspects.Find(1);
        var suspect2 = _dbcontext.Suspects.Find(2);

        newGame.GameSuspects.Add(suspect1);
        newGame.GameSuspects.Add(suspect2);

        //add Clues
        var clue1 = _dbcontext.Clues.Find(1);
        var clue2 = _dbcontext.Clues.Find(2);

        newGame.GameClues.Add(clue1);
        newGame.GameClues.Add(clue2);

        _dbcontext.Games.Add(newGame);
        _dbcontext.SaveChanges();

        return Created("", newGame);
    }

这就是我如何调用所有已创建游戏的列表:

[HttpGet("getGames")]
    public ActionResult<List<Game>> GetGames()
    {
        return _dbcontext.Games.ToList();
    }

当我创建一个新游戏时,一切似乎都很好。它返回给我一个新游戏ID,位置/线索/嫌疑人似乎都被添加了。但当我稍后尝试调用它们时,列表似乎是空的。我在创建或调用时是否做了什么完全错误的事情?或者我的关系只是完全混乱,我试图实现什么。这就是从我的数据库中制作一个具有随机位置/嫌疑人/线索的游戏。

watbbzwu

watbbzwu1#

使用:_dbcontext.Games.Include(g => g.GameLocations).Include(g => g.GameSuspects).Include(g => g.GameClues).ToList()包含相关项目。

相关问题