具有“ pmdata.safetyrequirement_assets”身份的成员在元数据集合中不存在。 参数名称:身份
我的数据库中没有任何触发器,我根据在线其他建议中经历了模型的几个更改,而且似乎并没有改变任何内容。该项目位于vnext.这里是我的第一个模型
另一个桌子的模型与许多桌子。
public partial class Asset : DataModel { [Required] [StringLength(64)] public string Name { get; set; } [StringLength(256)] public string Description { get; set; } [StringLength(1024)] public string SystemFunction { get; set; } [StringLength(2048)] public string Remarks { get; set; } public bool IsSystem { get; set; } public bool IsGrouping { get; set; } [StringLength(128)] public string FieldTag { get; set; } [ForeignKey("Parent")] public int? ParentId { get; set; } [ForeignKey("Building")] public int? BuildingId { get; set; } public bool IsOperable { get; set; } public bool IsAvailable { get; set; } public virtual Asset Parent { get; set; } public virtual Building Building { get; set; } public virtual ICollection<Asset> Children { get; set; } public virtual ICollection<DrawingReference> DrawingReferences { get; set; } public virtual ICollection<SpecReference> SpecReferences { get; set; } public virtual ICollection<SafetyRequirement> SafetyRequirements { get; set; } public virtual ICollection<SupportSystem> SupportSystems { get; set; } }
public partial class SafetyRequirement : DataModel
{
[StringLength(256)]
[Required]
public string Name { get; set; }
[StringLength(2048)]
public string SafetyFunction { get; set; }
[StringLength(2048)]
public string FunctionalRequirements { get; set; }
[StringLength(2048)]
public string SystemBoundary { get; set; }
[StringLength(255)]
public string Reference { get; set; }
[ForeignKey("QualityLevel")]
public int QualityLevelId { get; set; }
public virtual QualityLevel QualityLevel { get; set; }
public virtual ICollection<Asset> Assets { get; set; }
}
连接表的地图
modelBuilder.Entity<Asset>().HasMany(t => t.SafetyRequirements)
.WithMany(t => t.Assets)
.Map(m =>
{
m.MapRightKey("SafetyRequirementId");
m.MapLeftKey("AssetId");
m.ToTable("AssetSafetyRequirement");
});
最终是失败的区域:
public virtual void SaveAsync(TEntity model)
{
Task.Run(() =>
{
using (
var dbContext =
(TContext)
Activator.CreateInstance(typeof (TContext),
ConfigOptions == null ? ConfigService.ConnectionString : ConfigOptions.ConnectionString))
{
var dbSet = dbContext.Set<TEntity>();
dbSet.Attach(model);
dbContext.Entry(model).State = EntityState.Modified;
dbContext.SaveChanges();
}
});
}
我怎么可以解决此错误?
您试图同时使用流利的API和数据注释来定义表之间的关系。删除一个或另一个。