currently tweaking the model on a project I'm working on and I've hit a wall and can't seem to spot why I'm getting an error.
I have two class's
public class CorePage : BaseClass
{
public CorePage()
{
this.PageContent = new HashSet<PageContent>();
this.PageAliases = new HashSet<PageAlias>();
this.isEditable = true;
}
public string DisplayLabel { get; set; }
public bool isEditable { get; set; }
public int? ParentPageId { get; set; }
public virtual CorePage ParentPage { get; set; }
public int TemplateId { get; set; }
public virtual Template Template { get; set; }
public int DefaultPageAliasId { get; set; }
public virtual PageAlias DefaultPageAlias { get; set; }
public virtual ICollection<PageAlias> PageAliases { get; set; }
public virtual ICollection<PageContent> PageContent { get; set; }
}
And
public class PageAlias : BaseClass
{
public PageAlias()
{
}
public string Alias { get; set; }
public int PageId { get; set; }
public virtual CorePage Page { get; set; }
}
Relationships between the two class's are configured as follows.
public class CorePageConfiguration : EntityTypeConfiguration<CorePage>
{
public CorePageConfiguration()
{
HasOptional(cp => cp.ParentPage).WithMany().HasForeignKey(cp => cp.ParentPageId).WillCascadeOnDelete(false);
HasRequired(p => p.DefaultPageAlias).WithRequiredDependent().WillCascadeOnDelete(false);
}
}
And
public class PageAliasConfiguration : EntityTypeConfiguration<PageAlias>
{
public PageAliasConfiguration()
{
Property(pa => pa.Alias).IsRequired().HasMaxLength(500);
HasRequired(pa => pa.Page).WithMany(p => p.PageAliases).HasForeignKey(pa => pa.PageId).WillCascadeOnDelete(false);
}
}
Problem is I keep getting this error:
Unable to determine the principal end of the 'Core.DataContext.PageAlias_Page' relationship. Multiple added entities may have the same primary key.
And I cant seem to spot what I've missed.
Any help would be much appreciated.
Thanks,