简体   繁体   English

实体框架4-具有视图的多对多关系

[英]Entity Framework 4 - Many-To-Many Relationship with a view

I have an entity Group which has a many to many relationship with a view VesselInfo. 我有一个实体组,该实体组与VesselInfo视图具有多对多关系。 In database, the relationship is stored in a table, GroupVessel. 在数据库中,该关系存储在表GroupVessel中。

public class Group
{
    public Group()
    {
        GroupVessels = new List<GroupVessel>();
    }

    public int GroupId { get; set; }

    public virtual ICollection<GroupVessel> GroupVessels { get; set; }
}

public class GroupVessel
{
    public int GroupVesselId { get; set; }

    public int GroupId { get; set; }
    public virtual Group Group { get; set; }

    public int VesselId { get; set; }
    public virtual VesselView Vessel { get; set; }
}

public class VesselView
{
    public int VesselId { get; set; }
}

The entities are mapped in the context like this: 在这样的上下文中映射实体:

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Configurations.Add(new VesselViewMapping());
    modelBuilder.Configurations.Add(new GroupMapping());
    modelBuilder.Configurations.Add(new GroupVesselMapping());
    base.OnModelCreating(modelBuilder);
}

public class VesselViewMapping : EntityTypeConfiguration<VesselView>
{
    public VesselViewMapping()
    {
        // Primary Key
        HasKey(t => t.VesselId);

        // Properties
        Property(t => t.VesselId)
            .HasDatabaseGeneratedOption(DatabaseGeneratedOption.None);

        // Table & Column Mappings
        ToTable("v_VesselInfo");
        Property(t => t.VesselId).HasColumnName("VesselId");
    }
}

public class GroupMapping : EntityTypeConfiguration<Group>
{
    public GroupMapping()
    {
        // Primary Key
        HasKey(group => group.GroupId);

        // Properties

        // Table & Column Mappings
        ToTable("Group");
        Property(t => t.GroupId)
            .HasColumnName("GroupId")
            .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
    }
}

public class GroupVesselMapping : EntityTypeConfiguration<GroupVessel>
{
    public GroupVesselMapping()
    {
        // Primary Key
        HasKey(group => group.GroupVesselId);

        // Properties

        // Table & Column Mappings
        ToTable("GroupVessel");
        Property(t => t.GroupVesselId)
            .HasColumnName("GroupVesselId")
            .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);

        Property(t => t.VesselId).HasColumnName("VesselId").IsRequired();

        Property(t => t.GroupId).HasColumnName("GroupId");

        // Relationships
        HasRequired(t => t.Group).WithMany(g => g.GroupVessels)
                                 .HasForeignKey(t => t.GroupVesselId);
    }
}

When I try to instantiate the context, I get the following error: 当我尝试实例化上下文时,出现以下错误:

Exception Details: System.Data.Entity.ModelConfiguration.ModelValidationException: One or more validation errors were detected during model generation: 异常详细信息:System.Data.Entity.ModelConfiguration.ModelValidationException:在模型生成期间检测到一个或多个验证错误:

\\tSystem.Data.Entity.Edm.EdmAssociationEnd: : Multiplicity is not valid in Role 'GroupVessel_Group_Source' in relationship 'GroupVessel_Group'. \\ tSystem.Data.Entity.Edm.EdmAssociationEnd::多重性在关系'GroupVessel_Group'中的角色'GroupVessel_Group_Source'中无效。 Because the Dependent Role refers to the key properties, the upper bound of the multiplicity of the Dependent Role must be '1'. 由于从属角色指的是关键属性,因此从属角色的多重性上限必须为“ 1”。

Some additional info: In database, the GroupVessel.VesselId column is a foreign key to a table Vessels, which is the underlying table of the v_VesselInfo view. 一些其他信息:在数据库中,GroupVessel.VesselId列是表Vessels的外键,该表是v_VesselInfo视图的基础表。 There is no navigation property from VesselView back to GroupVessel as there is no need to traverse the graph that way in the application. 从VesselView到GroupVessel没有导航属性,因为无需在应用程序中以这种方式遍历图形。

最终弄清楚了,我使用了错误的字段作为外键字段,将其更改为GroupId即可工作

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM