当我通过自动生成的EF从表单更新表时,如果我从视图表单中删除了一些数据列,因为我不想编辑,那些列是用空值更新的,那么如何避免这种行为呢?我在这里阅读:Entity Framework: Ignore Columns将其从模型中删除,但并不总是我想忽略这些数据列。
感谢!
答案 0 :(得分:3)
另一种方法是使用注释
[HttpPost]
public virtual ActionResult Edit(
[Bind(Prefix="", Include="field1", Exclude="field2")]MyClass myClass)
{
....
答案 1 :(得分:2)
asp.net MVC为您提供UpdateModel
方法,查看重载
protected internal void UpdateModel<TModel>(
TModel model,
string prefix,
string[] includeProperties,
string[] excludeProperties
)
where TModel : class
使用它,您可以按名称排除或包含特定属性