对于我的实体中的所有类,我有一个名为 CommonFields 的基类
public class CommonFields
{
public int Status { get; set; }
public DateTime CreatedOn { get; set; }
public int CreaedBy { get; set; }
public DateTime ModifiedOn { get; set; }
public int ModifiedBy { get; set; }
}
而且,例如。我有两个类
public class Employee : CommonFields
{
public int Id { get; set; }
public string Name { get; set; }
//Other properties
}
public class User : CommonFields
{
public int Id { get; set; }
public string Name { get; set; }
//Other properties
}
如何设置从 CreatedBy 和 ModifiedBy 到用户表的关系。我只需要一个方向映射(我不希望在我的用户表中创建 FK)。
写 objEmployee.CreatedUser 时需要获取用户信息
谢谢。