覆盖SaveChanges()鸡肉和鸡蛋

时间:2014-05-20 18:27:33

标签: c# entity-framework savechanges overrides

我想知道是否有更好的方法从重写的SaveChanges()方法内部更新实体属性。我目前正在使用直接SQL。

以下是SaveChanges()

的摘录
public override SaveChanges(){                
        [...]
        if (updateId > 0)
        {
            string q = @"UPDATE NewClub SET 
                 LastActivityDate='" + DateTime.Now + "' WHERE Id=" + updateId;

            using (var context = new ReportingContext())
            {
                //ToDo: exception handling
                var result = context.Database.ExecuteSqlCommand(q);
            }
        }
    try
    {
        saveSuccess = base.SaveChanges() > 0;
    }
    catch (Exception e)
    {
        string ex = e.ToString();
    }
    return saveSuccess ? 1 : 0;
}

1 个答案:

答案 0 :(得分:0)

我正在使用this video开头所描述的技巧来获取我们最新的应用程序,并且到目前为止取得了巨大的成功。

public int SaveChanges(IPrincipal user)
    {
        foreach (var dbEntityEntry in this.ChangeTracker.Entries()
            .Where(e => e.Entity is BaseEntity &&
            ((e.State == EntityState.Modified) || (e.State == EntityState.Added))))
        {
            ((BaseEntity) dbEntityEntry.Entity).ModificationBy = user.Identity.Name;
            ((BaseEntity)dbEntityEntry.Entity).ModificationDate = TimeProvider.Current.Now;

        }
        return base.SaveChanges();
    }

我们只通过上下文界面公开此Save方法。

public interface IMyContext
{
    int SaveChanges(IPrincipal user);
}