Adventure.Works.LiveDemo.TSQLSyntaxLogger.LogTSQL C# (CSharp) 메소드

LogTSQL() 개인적인 메소드

private LogTSQL ( string command, string commandText ) : void
command string
commandText string
리턴 void
        private void LogTSQL(string command, string commandText)
        {
            var line = $"Intercepted on : {command} : - {commandText}";
            this.Log(line);
        }