다음을 통해 공유


Database.Log 속성

정의

이 속성을 설정하여 에서 생성된 SQL을 DbContext 지정된 대리자로 기록합니다. 예를 들어 콘솔에 로그하려면 이 속성을 Write(String)로 설정합니다.

public Action<string> Log { get; set; }
member this.Log : Action<string> with get, set
Public Property Log As Action(Of String)

속성 값

설명

에서 파생되는 새 포맷터를 만들고 로 설정SetDatabaseLogFormatter(Func<DbContext,Action<String>,DatabaseLogFormatter>)하여 로그 텍스트의 형식을 DatabaseLogFormatter 변경할 수 있습니다. 로깅/가로채기에 대한 보다 낮은 수준의 제어는 및 DbInterception를 참조하세요IDbCommandInterceptor.

적용 대상