Is there any extensible point on where EF hits the db, something that can be overridable to log or do anything everytime a hit to the db. im wondering of something like ``` override OnDatabaseHit(Operation op, Context context) { if (typeof(op) == Query | SaveChanges | ... { Console.WriteLine(context.Query) } } ``` if not, take it as a suggestion for EF7 :)