我先用代码,已经存在数据库表t_News,包含字段Id、NewsTitle、Content、AutoKeywords、Author。但是我不想实体包含字段 Author 所以定义这个实体类:
[Table ("t_News")]
public class News
{
public int Id {get; set;}
public string NewsTitle {get; set;}
public string Content {get; set;}
public string AutoKeywords {get; set;}
}
运行时错误:未处理的异常:System.InvalidOperationException:支持“PartContext”上下文的模型自数据库创建以来已更改。考虑使用 Code First 迁移来更新数据库 ( http://go.microsoft.com/fwlink/?LinkId=2 38269)。