如果首先使用 EF 核心代码映射不存在,则会出现错误
getting an error if mapping is not there with EF core code first
大家好,我有如下模型 sections
public class Sections
{
public int SectionId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Requests Requests { get; set; }
}
部分模型的数据结构如下所示
sectionId Name description
1 code1 code 1
2 code2 code 2
我还有一个模型Requests
模型如下所示
public class Requests
{
public int RequestId { get; set; }
public string Description { get; set; }
public int SectionId { get; set; }
public Sections sections { get; set; }
}
请求模型的示例数据结构如下所示
RequestId Description SectionId
1 test1 1
2 test2 1
3 test1 2
4 test2 2
使用这种模型数据结构,我在下面映射了这两个模型
modelBuilder.Entity<Requests>()
.HasOne(a => a.sections)
.WithOne(o => o.Requests); //not sure if this is correct way to map these two models with one-to-many mapping as listed in requests model
上面提到的映射是实现相同目标的正确方法,我正在使用 Entity framework 核心代码优先方法。
如果我不使用上面的映射,我会收到此错误:
The child/dependent side could not be determined for the one-to-one relationship between Requests.sections
and Sections.Requests
.
任何人都可以让我知道是否有任何其他方法可以映射这两个模型
试试这个
modelBuilder.Entity<sections>()
.HasOne(a => a.Requests)
Requests 的示例数据显示 Section
和 Request
之间的关系是 one-to-many(例如,有2 个请求 SectionId == 1
).
所以目前参考导航属性
public Requests Requests { get; set; }
这意味着one-to-一个应该变成collection导航属性
public ICollection<Requests> Requests { get; set; }
现在您可以使用HasOne
+ WithMany
或HasMany
+ WithOne
来配置关系。但这很可能不是必需的,因为通常 EF Core 可以按惯例确定 one-to-许多关系。
因此,虽然不是强烈强制,但最好为实体和引用导航属性使用单数名称,为 collection 导航属性使用复数名称:
public class Section
{
public int SectionId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public ICollection<Request> Requests { get; set; }
}
public class Request
{
public int RequestId { get; set; }
public string Description { get; set; }
public int SectionId { get; set; }
public Section Section { get; set; }
}
这样您将遵循 EF Core 约定,并且在大多数情况下不需要数据注释/流畅的配置。
参考: Relationships
大家好,我有如下模型 sections
public class Sections
{
public int SectionId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Requests Requests { get; set; }
}
部分模型的数据结构如下所示
sectionId Name description
1 code1 code 1
2 code2 code 2
我还有一个模型Requests
模型如下所示
public class Requests
{
public int RequestId { get; set; }
public string Description { get; set; }
public int SectionId { get; set; }
public Sections sections { get; set; }
}
请求模型的示例数据结构如下所示
RequestId Description SectionId
1 test1 1
2 test2 1
3 test1 2
4 test2 2
使用这种模型数据结构,我在下面映射了这两个模型
modelBuilder.Entity<Requests>()
.HasOne(a => a.sections)
.WithOne(o => o.Requests); //not sure if this is correct way to map these two models with one-to-many mapping as listed in requests model
上面提到的映射是实现相同目标的正确方法,我正在使用 Entity framework 核心代码优先方法。
如果我不使用上面的映射,我会收到此错误:
The child/dependent side could not be determined for the one-to-one relationship between
Requests.sections
andSections.Requests
.
任何人都可以让我知道是否有任何其他方法可以映射这两个模型
试试这个
modelBuilder.Entity<sections>()
.HasOne(a => a.Requests)
Requests 的示例数据显示 Section
和 Request
之间的关系是 one-to-many(例如,有2 个请求 SectionId == 1
).
所以目前参考导航属性
public Requests Requests { get; set; }
这意味着one-to-一个应该变成collection导航属性
public ICollection<Requests> Requests { get; set; }
现在您可以使用HasOne
+ WithMany
或HasMany
+ WithOne
来配置关系。但这很可能不是必需的,因为通常 EF Core 可以按惯例确定 one-to-许多关系。
因此,虽然不是强烈强制,但最好为实体和引用导航属性使用单数名称,为 collection 导航属性使用复数名称:
public class Section
{
public int SectionId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public ICollection<Request> Requests { get; set; }
}
public class Request
{
public int RequestId { get; set; }
public string Description { get; set; }
public int SectionId { get; set; }
public Section Section { get; set; }
}
这样您将遵循 EF Core 约定,并且在大多数情况下不需要数据注释/流畅的配置。
参考: Relationships