EF Ignoring列动态支持多个数据库

时间:2017-11-10 12:18:19

标签: asp.net-mvc entity-framework entity-framework-6 ef-code-first

我正在使用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),但这没有用,因为我不确定该列是否存在或不。 关于如何动态忽略列的任何建议都非常赞赏。

0 个答案:

没有答案