我想知道是否有更好的方法从覆盖的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;
}
我在我们最新的应用程序中使用了本视频开始时描述的技巧,到目前为止已经取得了巨大的成功。
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);
}