我有两张桌子
- StoreOrderItem
- 商店订单
现在 StoreOrder 有很多 StoreOrderItems 并且 StoreOrderItem 有一个 StoreOrder (简单的一对多关系)
public class StoreOrderItemMap : EntityTypeConfiguration<StoreOrderItem>
{
public StoreOrderItemMap()
{
this.ToTable("StoreOrderItem");
this.HasKey(op => op.Id);
this.Property(op => op.StoreOrderId).HasColumnName("order_id");
...
this.HasRequired(so => so.StoreOrder)
.WithMany(soi => soi.StoreOrderItems)
.HasForeignKey(so => so.StoreOrderId);
}
}
public class StoreOrderMap : EntityTypeConfiguration<StoreOrder>
{
public StoreOrderMap()
{
this.ToTable("StoreOrder");
this.HasKey(op => op.Id);
....
}
}
public class StoreOrderItem
{
....
public virtual int StoreOrderId { get; set; }
....
public virtual StoreOrder StoreOrder { get; set; }
}
public class StoreOrder
{
....
private ICollection<StoreOrderItem> _storeOrderItems;
....
public virtual ICollection<StoreOrderItem> StoreOrderItems
{
get { return _storeOrderItems ?? (_storeOrderItems = new List<StoreOrderItem>()); }
set { _storeOrderItems = value; }
}
}
//The code which is used to add the configurations to the modelBuilder.
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
System.Type configType = typeof(ContentMap); //any of your configuration classes here
var typesToRegister = Assembly.GetAssembly(configType).GetTypes()
.Where(type => !String.IsNullOrEmpty(type.Namespace))
.Where(type => type.BaseType != null && type.BaseType.IsGenericType && type.BaseType.GetGenericTypeDefinition() == typeof(EntityTypeConfiguration<>));
foreach (var type in typesToRegister)
{
dynamic configurationInstance = Activator.CreateInstance(type);
modelBuilder.Configurations.Add(configurationInstance);
}
base.OnModelCreating(modelBuilder);
}
注意我在现有数据库上运行此代码,我如何告诉 EF 不要选择“StoreOrder_Id”而使用现有列“order_id”?
这是错误:
“/”应用程序中的服务器错误。
列名“StoreOrder_Id”无效。
说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。
异常详细信息:System.Data.SqlClient.SqlException:列名“StoreOrder_Id”无效。