EF怎样只更新表的部分字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF怎样只更新表的部分字段相关的知识,希望对你有一定的参考价值。
参考技术A 直接通过sql中的update(更新)方法即可。sql:update table tablename set name ='zhangsan';
解释:上面sql的意思就是更新 tablename 表中 name 字段的值为“张三”。
EF部分字段更新,忽略为null字段
一般的更新代码是这样的
public T Update<T>(T entity) where T : ModelBase { var set = this.Set<T>(); set.Attach(entity); this.Entry<T>(entity).State = EntityState.Modified; this.SaveChanges(); return entity; }
但是有时候有更新的时候,如果为null则不更新这字段,这个时候就会有问题了,这个时候用另一个方法。。
public T Update2<T>(T entity) where T : ModelBase { var set = this.Set<T>(); set.Attach(entity); foreach (System.Reflection.PropertyInfo p in entity.GetType().GetProperties()) { if (p.GetValue(entity) != null) { this.Entry<T>(entity).Property(p.Name).IsModified = true; } } this.SaveChanges(); return entity; }
以上是关于EF怎样只更新表的部分字段的主要内容,如果未能解决你的问题,请参考以下文章
EF Code-First(Oracle)通过Migration来更新数据库的表的字段