本文共 475 字,大约阅读时间需要 1 分钟。
public static void UpdateModel(T entity, DbContext db) where T : class { db.Set ().Attach(entity); foreach (System.Reflection.PropertyInfo p in entity.GetType().GetProperties()) { if (p.GetValue(entity) != null) { db.Entry(entity).Property(p.Name).IsModified = true; } } db.SaveChanges(); }
学习交流群:364976091
转载地址:http://ifdeo.baihongyu.com/