我有一个“类别”实体如下:
public class Category
{
//<Summary>
//Fields...
//</Summary>
public Guid CategoryId { get; set; }
public string CategoryName { get; set; }
public bool IsDelete { get; set; }
// Fields for relationships
public Guid MainCategoryId { get; set; }
public Category MainCategory { get; set; }
public virtual ICollection<Category> ChildCategories { get; set; }
}
如上所示,我想在同一张表中创建 0 对多的关系。我为此使用了 Fluent API,如下所示:
HasRequired(category => category.MainCategory)
.WithMany(category => category.ChildCategories)
.HasForeignKey(category => category.MainCategoryId);
但它是一对多,而不是 0-1 对多。我使用HasOptional,但它给了我一个错误。
如何使用 Fluent API 做到这一点?
谢谢您的回复