다음을 통해 공유


IAnnotationCodeGenerator.IsHandledByConvention 메서드

정의

오버로드

IsHandledByConvention(IProperty, IAnnotation)

지정된 IProperty에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

IsHandledByConvention(IModel, IAnnotation)

지정된 IModel에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

IsHandledByConvention(IKey, IAnnotation)

지정된 IKey에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

IsHandledByConvention(IIndex, IAnnotation)

지정된 IIndex에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

IsHandledByConvention(IForeignKey, IAnnotation)

지정된 IForeignKey에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

IsHandledByConvention(IEntityType, IAnnotation)

지정된 IEntityType에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

IsHandledByConvention(IProperty, IAnnotation)

지정된 IProperty에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

public bool IsHandledByConvention (Microsoft.EntityFrameworkCore.Metadata.IProperty property, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation annotation);
abstract member IsHandledByConvention : Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation -> bool
Public Function IsHandledByConvention (property As IProperty, annotation As IAnnotation) As Boolean

매개 변수

property
IProperty

IProperty

반환

적용 대상

IsHandledByConvention(IModel, IAnnotation)

지정된 IModel에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

public bool IsHandledByConvention (Microsoft.EntityFrameworkCore.Metadata.IModel model, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation annotation);
abstract member IsHandledByConvention : Microsoft.EntityFrameworkCore.Metadata.IModel * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation -> bool
Public Function IsHandledByConvention (model As IModel, annotation As IAnnotation) As Boolean

매개 변수

model
IModel

IModel

반환

True이면 주석이 규칙에 의해 처리됩니다. 코드를 생성해야 하는 경우 false입니다.

적용 대상

IsHandledByConvention(IKey, IAnnotation)

지정된 IKey에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

public bool IsHandledByConvention (Microsoft.EntityFrameworkCore.Metadata.IKey key, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation annotation);
abstract member IsHandledByConvention : Microsoft.EntityFrameworkCore.Metadata.IKey * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation -> bool
Public Function IsHandledByConvention (key As IKey, annotation As IAnnotation) As Boolean

매개 변수

key
IKey

IKey

반환

적용 대상

IsHandledByConvention(IIndex, IAnnotation)

지정된 IIndex에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

public bool IsHandledByConvention (Microsoft.EntityFrameworkCore.Metadata.IIndex index, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation annotation);
abstract member IsHandledByConvention : Microsoft.EntityFrameworkCore.Metadata.IIndex * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation -> bool
Public Function IsHandledByConvention (index As IIndex, annotation As IAnnotation) As Boolean

매개 변수

index
IIndex

IIndex

반환

적용 대상

IsHandledByConvention(IForeignKey, IAnnotation)

지정된 IForeignKey에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

public bool IsHandledByConvention (Microsoft.EntityFrameworkCore.Metadata.IForeignKey foreignKey, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation annotation);
abstract member IsHandledByConvention : Microsoft.EntityFrameworkCore.Metadata.IForeignKey * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation -> bool
Public Function IsHandledByConvention (foreignKey As IForeignKey, annotation As IAnnotation) As Boolean

매개 변수

반환

적용 대상

IsHandledByConvention(IEntityType, IAnnotation)

지정된 IEntityType에 적용할 때 지정된 IAnnotation 가 규칙에 의해 처리되는지 확인합니다.

public bool IsHandledByConvention (Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation annotation);
abstract member IsHandledByConvention : Microsoft.EntityFrameworkCore.Metadata.IEntityType * Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation -> bool
Public Function IsHandledByConvention (entityType As IEntityType, annotation As IAnnotation) As Boolean

매개 변수

반환

True이면 주석이 규칙에 의해 처리됩니다. 코드를 생성해야 하는 경우 false입니다.

적용 대상