Entity Framework 6.1.3 Mapping Foreign key to non primary key(实体框架 6.1.3 将外键映射到非主键)
问题描述
目标是拥有一个 API,其中包含来自 GravityZone 的所有字段,以及来自 Zone 表的区域名称.我已经尝试了以下代码的几种排列但没有成功.它目前正在为 Zone 提供 null ,我希望将名称作为字符串或对象的一部分.我正在处理无法修改的现有表.
The goal is to have an API with all the fields from the GravityZone with the name of the zone coming from the Zone table. I've tried several permutations of the following code without success. It's currently coming up with null for the Zone which I'm hoping to get either the name as a string or part of the object. I'm working with existing tables that I'm not able to modify.
型号:
public partial class Zone
{
[Key]
[Column("ZONE_ID")]
public decimal ZoneId { get; set; }
[Column("ZONE_CODE")]
public decimal ZoneCode { get; set; }
[Column("ZONE_NAME")]
public string ZoneName { get; set; }
public virtual ICollection<GravityZone> GravityZones { get; set; }
}
public partial class GravityZone
{
[Key]
[Column("GRAVITY_ID")]
public decimal GravityZoneId { get; set; }
[Column("ZONE_CODE")]
public decimal ZoneCode { get; set; }
[Column("ELEVATION")]
public decimal Elevation { get; set; }
[Column("REMARK")]
[StringLength(2000)]
public string Remark { get; set; }
public virtual Zone Zone { get; set; }
}
上下文(仅关系部分)
modelBuilder.Entity<Zone>()
.HasKey(e => e.ZoneCode);
modelBuilder.Entity<GravityZone>()
.HasRequired(e => e.Zones);
除了这部分,其他一切都很好:
Everything else comes back great except for this part:
"Zones":null,
推荐答案
现在可以在 Entity Framework 7(即 EF Core 1.0)中实现.
This is now possible in Entity Framework 7 (that is, EF Core 1.0).
来自 .Net Entity Framework 用户语音唯一约束(即候选键)支持:
在 EF Core 1.0 中添加了对此功能的支持,我们没有计划在 EF6 代码库中添加它.
Support for this feature was added in EF Core 1.0 and we don’t have plans to add it in the EF6 codebase.
这篇关于实体框架 6.1.3 将外键映射到非主键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:实体框架 6.1.3 将外键映射到非主键
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何激活MC67中的红灯 2022-01-01