最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

.net - How to exclude foreign keys in JSON Response? - Stack Overflow

programmeradmin3浏览0评论

I'm modelling a Game object (here I removed a few properties to keep it simple) with a foreign key PlayerModeId referencing a Mode table and PlayerMode as a navigation property.

When I use EF Core to retrieve all games with this statement:

context.Game.Include(x => x.PlayerMode)

it produces a JSON shown here - is there a way to remove redundancy of including PlayerModeId twice? Or maybe project just a single PlayerMode: "Single" key instead of two keys?

{
    ...
    "PlayerModeId": 1,
    "PlayerMode": {
       "Id": 1,
       "PlayerMode": "Single"
    }
}

Game and Mode classes:

public class Game
{
    [Key]
    public string Id { get; set; } = Guid.NewGuid().ToString();

    public required string Name { get; set; }

    public int PlayerModeId { get; set; }
    public Mode? PlayerMode { get; set; }
}

public class Mode
{
    [Key]
    public int Id { get; set;}
    public required string PlayerMode { get; set; }
}

I'm modelling a Game object (here I removed a few properties to keep it simple) with a foreign key PlayerModeId referencing a Mode table and PlayerMode as a navigation property.

When I use EF Core to retrieve all games with this statement:

context.Game.Include(x => x.PlayerMode)

it produces a JSON shown here - is there a way to remove redundancy of including PlayerModeId twice? Or maybe project just a single PlayerMode: "Single" key instead of two keys?

{
    ...
    "PlayerModeId": 1,
    "PlayerMode": {
       "Id": 1,
       "PlayerMode": "Single"
    }
}

Game and Mode classes:

public class Game
{
    [Key]
    public string Id { get; set; } = Guid.NewGuid().ToString();

    public required string Name { get; set; }

    public int PlayerModeId { get; set; }
    public Mode? PlayerMode { get; set; }
}

public class Mode
{
    [Key]
    public int Id { get; set;}
    public required string PlayerMode { get; set; }
}
Share Improve this question edited yesterday marc_s 756k184 gold badges1.4k silver badges1.5k bronze badges asked yesterday X HOxhaX HOxha 1771 gold badge3 silver badges12 bronze badges 1
  • 2 Yes, the usual recommendation: don't expose entity objects, project to DTOs to display data. (Not my downvote, btw) – Gert Arnold Commented yesterday
Add a comment  | 

1 Answer 1

Reset to default 1

It's not advisable to expose your entity models directly. Instead, you should project only the necessary fields using a Select. Doing this, along with a proper JSON structure, ensures your SQL queries are efficient and return just the required data.

context.Game.Select(g => new
{
    // Include only the properties you need
    PlayerMode = g.PlayerMode.PlayerMode
});
发布评论

评论列表(0)

  1. 暂无评论