DbCommandInterceptor.CommandCreating 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EF가 를 호출하기 직전에 호출 CreateCommand()됩니다.
public virtual Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult<System.Data.Common.DbCommand> CommandCreating (Microsoft.EntityFrameworkCore.Diagnostics.CommandCorrelatedEventData eventData, Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult<System.Data.Common.DbCommand> result);
abstract member CommandCreating : Microsoft.EntityFrameworkCore.Diagnostics.CommandCorrelatedEventData * Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult<System.Data.Common.DbCommand> -> Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult<System.Data.Common.DbCommand>
override this.CommandCreating : Microsoft.EntityFrameworkCore.Diagnostics.CommandCorrelatedEventData * Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult<System.Data.Common.DbCommand> -> Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult<System.Data.Common.DbCommand>
Public Overridable Function CommandCreating (eventData As CommandCorrelatedEventData, result As InterceptionResult(Of DbCommand)) As InterceptionResult(Of DbCommand)
매개 변수
- eventData
- CommandCorrelatedEventData
명령 및 실행에 대한 컨텍스트 정보입니다.
- result
- InterceptionResult<DbCommand>
있는 경우 현재 결과를 나타냅니다.
이전의 일부 인터셉터에서 를 호출SuppressWithResult(TResult)하여 true
실행을 억제한 경우 이 값은 로 설정됩니다HasResult.
이 값은 일반적으로이 메서드의 구현에 대 한 반환 값으로 사용 합니다.
반환
가 false이면 HasResult EF는 정상적으로 계속됩니다.
가 true이면 HasResult EF는 수행하려고 하던 작업을 표시하지 않고 대신 사용합니다 Result .
결과를 변경하려고 하지 않는 인터셉터에 대해 이 메서드의 일반적인 구현은 전달된 값을 반환 result
하는 것입니다.
구현
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework