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