コードファーストの 2 つのクラス
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