EF Core-将行映射到集合集

时间:2019-12-04 03:37:04

标签: ef-core-2.2

我有下表:

类别

CategoryID | CategoryName
1          | Electronic
2          | Computer
3          | Monitor
4          | Laptop

SubCategory(类别-子类别关系)表:

CategoryID | SubCategoryID
1          | 2
1          | 3
1          | 4

Subcategory表中的上述CategoryID和SubCategoryID列都是对Category表中CategoryID的关键引用。

问题是:如何将EF Core Map映射到以下课程?

public class Category
{
    public string Name { get;set; }
    public IList<Category> SubCategories { get;set; }
}

0 个答案:

没有答案