目前正在开发 ASP.Net MVC 4 应用程序。我被要求记录用户在应用程序中的所有更改。它不过是Audit Trail
这是我的控制器代码
public ActionResult SaveBasicInfo(PatientBasicInfoViewModel basicInfoViewModel)
{
if (ModelState.IsValid)
{
var loggedInUserPersonId = ((User)Session["CurrentUser"]).PersonId;
long tenantId = TenantContext.TenantId;
var patient = Mapper.Map<PatientBasicInfoViewModel,
Patient>(basicInfoViewModel);
patient.TenantId = tenantId;
if (patient.PatientId > 0)
{
patient.UpdatedBy = loggedInUserPersonId;
patient.UpdatedDateTime = DateTime.Now;
patientService.UpdatePatientDetails(patient);
//Here need to do Audit Log
//Current User modified this fields values from `xx` to `yy` on
}
else
{
patient.AddedBy = loggedInUserPersonId;
patientService.AddPatient(patient);
// Here need to Log, This user created this patient record on Date
}
return RedirectToAction("Details", new { id = patient.PatientId });
}
return RedirectToAction("Details");
}
有人可以帮助我为此设计表格结构,这对于所有组合都是灵活的。
另外,我如何同时记录旧值和新值?
还提到了关于捕获审计跟踪的数据库设计的想法,但没有得到:(
替代解决方案:为需要审计和使用数据库触发器的每个表创建一个影子/历史表。在这里解释。
问题是,我怎么知道这个列的值是由这个用户从这个更改为那个的?我需要按用户显示所有历史记录并作为记录
注意: 我们没有使用实体框架,我们使用简单的存储过程和 ADO.Net 并使用 POCO 类
帮我从下面提到的这里选择最好的一个
每个被审计的表都有一个单独的“历史”表
用于跟踪更改的所有表的合并“历史”表