EntityFramework.Triggers
EntityFramework.Triggers copied to clipboard
SaveChangesWithTriggers doesn't work wiath AUDIT.Net
Hi, When i override SaveChange and call SaveChangesWithTriggers. AUDIT.NET Library does not store event in database. is it possible to undertant how SaveChangesWithTriggers Work exactly ? When i remove the override saveChange all work fine.
Example :
public override Int32 SaveChanges()
{
return this.SaveChangesWithTriggers(base.SaveChanges,_serviceProvider, true);
}
Link of AUDIT.NET Library on github https://github.com/thepirat000/Audit.NET
My apologies, I did not see this issue until now. Were you able to resolve it?