小编moe*_*our的帖子

如何在 EF Core 中实现搜索

我有一个招聘管理系统应用程序,包含 2 个实体Person& Tag

人可以有一个标签列表。

这是我的个人实体:

    public int Id { get; set; }
    public string FirstName { get; set; }
    public string Family { get; set; }
    public long NationalId { get; set; }
    public DateTime BirthDate { get; set; }
    public ICollection<TagAggregate> Tags { get; set; }
Run Code Online (Sandbox Code Playgroud)

这是我的标签实体:

    public int Id { get; set; }
    public string TagName { get; set; }
    public string Description { get; set; }
    public int PersonId { get; set; } …
Run Code Online (Sandbox Code Playgroud)

c# asp.net-web-api swagger .net-5

8
推荐指数
1
解决办法
1204
查看次数

标签 统计

.net-5 ×1

asp.net-web-api ×1

c# ×1

swagger ×1