I have an Interceptor.
public class EfQueryLogsInterceptor : IDbCommandInterceptor
{
public void ReaderExecuted(DbCommand command,
DbCommandInterceptionContext<DbDataReader> interceptionContext)
{
//string tableName = ???
}
}
I want to get the table name in the ReaderExecuted method.
How can I do it?