我正在使用EF6和Code First。我有一个像这样的Model类
public class User
{
public int User_Id { get; set; }
public int User_Name { get; set; }
public int Address { get; set; } //May or may not present in DB
}
在我的应用程序中,我使用多个数据库版本,其中表列地址可能存在也可能不存在。 我知道我可以使用 [NotMapped] 或忽略(x => x.Address),但这没有用,因为我不确定该列是否存在或不。 关于如何动态忽略列的任何建议都非常赞赏。