我首先在我的模型中使用代码,并尝试将 2 个属性添加到评估类中,这将是返回到我的提供者类的外键。
... In Assessment Class ...
public class Assessment
{
public int AssessmentID { get; set; }
public int createdByProviderID { get; set; } // this will container a providerID
public int closedByProviderID { get; set; } // this will container a providerID
}
...
... Provider ...
public class Provider
{
public int ProviderID { get; set; }
}
...
我无法弄清楚如何做到这一点,因为它们不遵循 EF 寻找的标准命名约定。