0

我正在使用ObjectContext.SavingChanges事件根据对象状态更新 CreatedDate/UpdatedDate 列,如下所示

partial void OnContextCreated()
{
   //Extension of the Command Timeout to avoid processing problems.
   CommandTimeout = 600; //Time in seconds

   this.SavingChanges += new EventHandler(Entities_SavingChanges);
}

protected void Entities_SavingChanges(object sender, EventArgs e)
{
   var addedObjects = this.ObjectStateManager.GetObjectStateEntries(System.Data.EntityState.Added);
   foreach (var addedObject in addedObjects)
   {
      var propertyInfo = addedObject.Entity.GetType().GetProperty("CreatedDate");
      if (propertyInfo != null)
      {
         propertyInfo.SetValue(addedObject.Entity, DateTime.UtcNow, null);
      }
    }

    var modifiedObjects = this.ObjectStateManager.GetObjectStateEntries(System.Data.EntityState.Modified);
    foreach (var modifiedObject in modifiedObjects)
    {
       var propertyInfo = modifiedObject.Entity.GetType().GetProperty("UpdatedDate");
       if (propertyInfo != null)
       {
          propertyInfo.SetValue(modifiedObject.Entity, DateTime.UtcNow, null);
       }
    }
}

我还有两列 CreatedUser 和 UpdatedUser。

有没有办法从上下文中更新那些使用当前用户名的人?

Ofcource,System.HttpContext.Current这里为空,因为这是我通过 WCF 服务访问的单独的类库项目。

4

1 回答 1

0

如果此代码驻留在您从 ASP.NET MVC 应用程序使用的 WCF 服务中,您可以将当前用户名作为参数发送给您正在调用的方法。

于 2013-02-19T07:58:24.507 回答