Rock.DebugHelper.SQLLoggingStop C# (CSharp) Méthode

SQLLoggingStop() public static méthode

Stops logging all EF SQL Calls to the Debug Output Window
public static SQLLoggingStop ( ) : void
Résultat void
        public static void SQLLoggingStop()
        {
            DbInterception.Remove( _debugLoggingDbCommandInterceptor );
        }

Usage Example

Exemple #1
0
 /// <summary>
 /// Enables or Disables SqlLogging
 /// </summary>
 /// <param name="dbContext">The database context to filter logs to.</param>
 /// <param name="enable">if set to <c>true</c> [enable].</param>
 public static void SqlLogging(this System.Data.Entity.DbContext dbContext, bool enable)
 {
     if (enable)
     {
         DebugHelper.SQLLoggingStart(dbContext);
     }
     else
     {
         DebugHelper.SQLLoggingStop();
     }
 }
All Usage Examples Of Rock.DebugHelper::SQLLoggingStop