1

语境:

我使用 EF5 作为模型和数据库之间的连接。我的解决方案有以下几层:

  • Company.Common(包括通用类和接口);
  • Company.Common.Data.Sql.EF(包括与 EF 相关的公共类和接口);
  • Company.App.Model(包括应用的模型+IModelRepository类,不参考EF);
  • Company.App.Data.Sql.EF(包括基于应用模型的EF数据库实现)
  • Company.App.Services(持有服务,它使用 IModelRepositories 等......)

问题描述:

我得到的错误如下: base {System.Exception} = {"在模型生成过程中检测到一个或多个验证错误:\r\n\r\n\tSystem.Data.Entity.Edm.EdmEntityType: : EntityType ' AnnualPeriodMap' 没有定义键。定义此 EntityType 的键。\r\n\tSystem.Data.Entity.Edm.EdmEntitySet: EntityTy...

我的模型类尽可能基本,但为了帮助自己避免输入冗余代码,一些模型类继承自我称为EntityBase的类,该类仅包含 Id 属性。下面是这个类的代码:

/// <summary>
/// Base implementation for IEntity.
/// </summary>
/// <typeparam name="TId">The type of the id.</typeparam>
public abstract class EntityBase<TId> : IEntity<TId>        
{
    public virtual TId Id { get; set; }        
    object IEntity.Id
    {
        get
        {
            return this.Id;
        }
        set
        {
            this.Id = (TId)value;
        }
    }
}

EntityBase本身继承自IEntity,它在 Company.Common.Data 中定义,这里是这个接口的代码:

public interface IEntity
{
    /// <summary>
    /// The entity's id.
    /// </summary>
    object Id { get; set; }
}

/// <summary>
/// Defines an entity.
/// </summary>
/// <typeparam name="TKey">The type of the entity's key.</typeparam>
public interface IEntity<TKey> : IEntity
{
    /// <summary>
    /// The entity's id.
    /// </summary>
    new TKey Id { get; set; }
}

当必须声明共享相同旧数据(例如 Id)的模型实体时,我所做的所有这些都是为了让我的生活更轻松……下面是我目前遇到问题的模型类的代码,即AnnualPeriod,它如您所见,继承自EntityBase (of long)。EntityBase 本身如上图,第一个代码示例...

public class AnnualPeriod : EntityBase<long>
{
    public virtual int AnnualPeriodTypeId { get; set; }
    public virtual AnnualPeriodType AnnualPeriodType { get; set; }
    public virtual string Code { get; set; }
    public virtual DateTime StartDate { get; set; }
    public virtual DateTime EndDate { get; set; }

    public virtual ICollection<Counter> Counters { get; set; }
}

我的 EF 映射是通过EntityTypeConfiguration(属于 ModelClass)类完成的,下面是此类映射的一个示例:

public class AnnualPeriodMap : EntityTypeConfiguration<AnnualPeriod>
{
    public AnnualPeriodMap()
    {
        // Table
        this.ToTable("AnnualPeriods");

        // Primary Key
        this.HasKey(e => e.Id);

        // Columns
        this.Property(e => e.Id).HasColumnName("id");
        this.Property(e => e.AnnualPeriodTypeId).HasColumnName("annualPeriodTypeId");
        this.Property(e => e.Code).HasColumnName("code");
        this.Property(e => e.StartDate).HasColumnName("startDate");
        this.Property(e => e.EndDate).HasColumnName("endDate");
    }
}

现在在执行代码时,我发现 EF5 说EntityType 'AnnualPeriodMap' 没有定义键。定义此 EntityType 的键。我不明白我做错了什么,因为我在我的AnnualPeriodMap (EntityTypeConfiguration) 类中明确说明了代码this.HasKey(e => e.Id) 。

很明显我做错了,无论是在配置中,还是在不理解 EF 如何正常工作方面。但是我还没有在互联网上找到任何关于设置这样的结构的信息......

提前感谢您的建议,Yves Schelpe

4

3 回答 3

1

似乎在带有自定义约定的 EF6 中会有办法解决这个问题。请参阅 [ http://channel9.msdn.com/Events/TechEd/NorthAmerica/2013/DEV-B335#fbid=yJPWH45LEuw ](演讲时间大约 00:20:00)。

于 2013-06-19T11:21:15.853 回答
0

请提及 Key 属性

命名空间:使用 System.ComponentModel.DataAnnotations;

 public class AnnualPeriod : EntityBase<long>
 {
[Key]
public virtual int AnnualPeriodTypeId { get; set; }
public virtual AnnualPeriodType AnnualPeriodType { get; set; }
public virtual string Code { get; set; }
public virtual DateTime StartDate { get; set; }
public virtual DateTime EndDate { get; set; }

public virtual ICollection<Counter> Counters { get; set; }
 }
于 2013-06-12T11:18:24.033 回答
0

对我来说,解决方案是将 EntityTypeConfiguration 添加到 DbContext 初始化中。我已经正确声明了 DbSet,但由于未知原因,我完全忘记了配置它!就像是:

public IDbSet<AnnualPeriod> AnnualPeriods { get; set; }

void OnModelCreating(DbModelBuilder modelBuilder){
   ....
   //I was missing this line
   modelBuilder.Configurations.Add(new AnnualPeriodMap ());
于 2017-04-06T13:58:38.403 回答