I'm trying to get a code first project to create my database; I've gotten all of the schema errors resolved but now I'm receiving the following error.
The relationship 'EquipmentPro.Entities.Correspondence_UserFrom' was not loaded because the type 'EquipmentPro.Entities.AspNetUsers' is not available.
I've read some of the posts here and most of them say that the problem is because the 'AspNetUsers' class is not in the same namespace as the class the relationship is on. That was true at first so I moved AspNetUsers into the same folder as the other model object and fixed the namespace but I'm still getting the error. I'm using fluent API to create the tables and relationships.
Here is the Correspondence model:
public class Correspondence : EntityBase
{
public Correspondence()
{
ChildCorrespondences = new HashSet<Correspondence>();
}
public int CorrespondenceId { get; set; }
public int CorrespondenceTypeId { get; set; }
public int? ParentCorrespondenceId { get; set; }
public string UserIdFrom { get; set; }
public string UserIdTo { get; set; }
public int LanguageId { get; set; }
public int? EquipmentItemId { get; set; }
public int? CartId { get; set; }
public string MessageText { get; set; }
public bool IsFlaggedForReview { get; set; }
public Correspondence ParentCorrespondence { get; set; }
public CorrespondenceType CorrespondenceType { get; set; }
public AspNetUsers UserFrom { get; set; }
public AspNetUsers UserTo { get; set; }
public Language Language { get; set; }
public EquipmentItem EquipmentItem { get; set; }
public Cart Cart { get; set; }
public ICollection<Correspondence> ChildCorrespondences { get; set; }
}
The AspNetUsers model is the standard .Net membership users model and here is the fluent API code:
public CorrespondenceMapping()
{
HasKey(t => t.CorrespondenceId);
ToTable("Correspondence");
Property(t => t.CorrespondenceId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
Property(t => t.CorrespondenceTypeId).IsRequired();
Property(t => t.ParentCorrespondenceId);
Property(t => t.UserIdFrom).HasMaxLength(128).IsRequired().HasColumnType("nvarchar");
Property(t => t.UserIdTo).HasMaxLength(128).HasColumnType("nvarchar");
Property(t => t.LanguageId).IsRequired();
Property(t => t.EquipmentItemId);
Property(t => t.CartId);
Property(t => t.MessageText).IsRequired().HasColumnType("nvarchar");
Property(t => t.IsFlaggedForReview).IsRequired();
HasOptional(t => t.ParentCorrespondence)
.WithMany(t => t.ChildCorrespondences)
.HasForeignKey(t => t.ParentCorrespondenceId)
.WillCascadeOnDelete();
HasRequired(t => t.CorrespondenceType)
.WithMany(t => t.Correspondences)
.HasForeignKey(t => t.CorrespondenceTypeId)
.WillCascadeOnDelete();
// the error is with this relaionship
HasRequired(t => t.UserFrom).WithMany(t => t.Correspondences).HasForeignKey(t => t.UserIdFrom);
HasOptional(t => t.UserTo).WithMany(t => t.Correspondences).HasForeignKey(t => t.UserIdTo);
HasRequired(t => t.Language).WithMany(t => t.Correspondences).HasForeignKey(t => t.LanguageId);
HasOptional(t => t.EquipmentItem).WithMany(t => t.Correspondences).HasForeignKey(t => t.EquipmentItemId);
HasOptional(t => t.Cart).WithMany(t => t.Correspondences).HasForeignKey(t => t.CartId);
}
Here is the DbContext class:
public class EquipmentDataDbContext : DbContext
{
public EquipmentDataDbContext()
: base("name=EquipmentData")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
// adding the equipment data model mappings
modelBuilder.Configurations.Add(new CartMapping());
modelBuilder.Configurations.Add(new CartItemMapping());
modelBuilder.Configurations.Add(new CartStatusTypeMapping());
modelBuilder.Configurations.Add(new CorrespondenceMapping());
modelBuilder.Configurations.Add(new CorrespondenceTypeMapping());
modelBuilder.Configurations.Add(new CurrencyTypeMapping());
modelBuilder.Configurations.Add(new EquipmentAuctionMapping());
modelBuilder.Configurations.Add(new EquipmentAuctionBidMapping());
modelBuilder.Configurations.Add(new EquipmentBidMapping());
modelBuilder.Configurations.Add(new EquipmentInventoryMapping());
modelBuilder.Configurations.Add(new EquipmentItemMapping());
modelBuilder.Configurations.Add(new EquipmentItemPropertyDefaultMapping());
modelBuilder.Configurations.Add(new EquipmentItemPropertyValueMapping());
modelBuilder.Configurations.Add(new EquipmentItemTypeMapping());
modelBuilder.Configurations.Add(new EquipmentPropertyMapping());
modelBuilder.Configurations.Add(new EquipmentPropertyDisplayTypeMapping());
modelBuilder.Configurations.Add(new EquipmentPropertyOptionMapping());
modelBuilder.Configurations.Add(new EquipmentPropertyValueTypeMapping());
modelBuilder.Configurations.Add(new MediaMapping());
modelBuilder.Configurations.Add(new MediaTypeMapping());
modelBuilder.Configurations.Add(new TagMapping());
// adding the membership data model mappings
modelBuilder.Configurations.Add(new AspNetRolesMapping());
modelBuilder.Configurations.Add(new AspNetUserClaimsMapping());
modelBuilder.Configurations.Add(new AspNetUserLoginsMapping());
modelBuilder.Configurations.Add(new AspNetUsersMapping());
}
// Equipment Data Models
public DbSet<Cart> Carts { get; set; }
public DbSet<CartItem> CartItems { get; set; }
public DbSet<CartStatusType> CartStatuses { get; set; }
public DbSet<Correspondence> Correspondences { get; set; }
public DbSet<CorrespondenceType> CorrespondenceTypes { get; set; }
public DbSet<CurrencyType> CurrencyTypes { get; set; }
public DbSet<EquipmentAuction> EquipmentAuctions { get; set; }
public DbSet<EquipmentAuctionBid> EquipmentAuctionBids { get; set; }
public DbSet<EquipmentBid> EquipmentBids { get; set; }
public DbSet<EquipmentInventory> EquipmentInventory { get; set; }
public DbSet<EquipmentItem> EquipmentItems { get; set; }
public DbSet<EquipmentItemPropertyDefault> EquipmentItemPropertyDefault { get; set; }
public DbSet<EquipmentItemPropertyValue> EquipmentItemPropertyValues { get; set; }
public DbSet<EquipmentItemType> EquipmentItemTypes { get; set; }
public DbSet<EquipmentProperty> EquipmentProperties { get; set; }
public DbSet<EquipmentPropertyDisplayType> EquipmentPropertyDisplayTypes { get; set; }
public DbSet<EquipmentPropertyOption> EquipmentPropertyOptions { get; set; }
public DbSet<EquipmentPropertyValueType> EquipmentPropertyValueTypes { get; set; }
public DbSet<Media> Media { get; set; }
public DbSet<MediaType> MediaTypes { get; set; }
public DbSet<Tag> Tags { get; set; }
// Membership Models
public DbSet<AspNetRoles> AspNetRoles { get; set; }
public DbSet<AspNetUserClaims> AspNetUserClaims { get; set; }
public DbSet<AspNetUserLogins> AspNetUserLogins { get; set; }
public DbSet<AspNetUsers> AspNetUsers { get; set; }
}
I've split my solution into 3 different projects a web project, a project with just the entity models and a project with the mappings and the database context in it. I'm running the initial create from the web project when I get this error.
Does anyone have an idea why I would be getting this error?
UPDATE:
I decided to remove the relationship throwing the error and it appeared that everything was successful but no tables have been created in the database. The target database listed in the message is the correct one but no tables were created.