在codefirst實體框架代碼優先 - 無效的列名鑑別
public partial class BaseEntity
{
public int ID { get; set; }
}
public partial class Fund : BaseEntity
{
public int Name { get; set; }
}
public partial class InvestorFund : BaseEntity
{
public int FundID { get; set; }
}
映射類兩類
this.Property(t => t.ID).HasColumnName("FundID");
我的代碼第一次加入SQL查詢
from fund in context.Funds
join investorFund in context.InvestorFunds on fund.ID equals investorFund.FundID
拋出一個Invalid column name Discriminator
每種類型的表(TPT) – karthi 2013-05-16 07:02:15
您應該能夠使用我在TPT下編寫的代碼行來避免此錯誤。 – DamienG 2013-05-16 22:03:39
在這個例子中,「類型」應該是「鑑別者」。 – 2013-11-21 18:05:42