다음을 통해 공유


RelationalCollectionOwnershipBuilderExtensions.HasConstraintName 메서드

정의

오버로드

HasConstraintName(CollectionOwnershipBuilder, String)

관계형 데이터베이스를 대상으로 할 때 이 관계에 대한 외래 키 제약 조건 이름을 구성합니다.

HasConstraintName<TEntity,TDependentEntity>(CollectionOwnershipBuilder<TEntity,TDependentEntity>, String)

관계형 데이터베이스를 대상으로 할 때 이 관계에 대한 외래 키 제약 조건 이름을 구성합니다.

HasConstraintName(CollectionOwnershipBuilder, String)

Source:
RelationalCollectionOwnershipBuilderExtensions.cs

관계형 데이터베이스를 대상으로 할 때 이 관계에 대한 외래 키 제약 조건 이름을 구성합니다.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder HasConstraintName (this Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder referenceReferenceBuilder, string name);
static member HasConstraintName : Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder
<Extension()>
Public Function HasConstraintName (referenceReferenceBuilder As CollectionOwnershipBuilder, name As String) As CollectionOwnershipBuilder

매개 변수

referenceReferenceBuilder
CollectionOwnershipBuilder

관계를 구성하는 데 사용되는 작성기입니다.

name
String

외래 키 제약 조건의 이름입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

적용 대상

HasConstraintName<TEntity,TDependentEntity>(CollectionOwnershipBuilder<TEntity,TDependentEntity>, String)

Source:
RelationalCollectionOwnershipBuilderExtensions.cs

관계형 데이터베이스를 대상으로 할 때 이 관계에 대한 외래 키 제약 조건 이름을 구성합니다.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> HasConstraintName<TEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> referenceReferenceBuilder, string name) where TEntity : class where TDependentEntity : class;
static member HasConstraintName : Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)> (requires 'Entity : null and 'DependentEntity : null)
<Extension()>
Public Function HasConstraintName(Of TEntity As Class, TDependentEntity As Class) (referenceReferenceBuilder As CollectionOwnershipBuilder(Of TEntity, TDependentEntity), name As String) As CollectionOwnershipBuilder(Of TEntity, TDependentEntity)

형식 매개 변수

TEntity

관계의 한쪽 끝에 있는 엔터티 형식입니다.

TDependentEntity

관계의 다른 쪽 끝에 있는 엔터티 형식입니다.

매개 변수

referenceReferenceBuilder
CollectionOwnershipBuilder<TEntity,TDependentEntity>

관계를 구성하는 데 사용되는 작성기입니다.

name
String

외래 키 제약 조건의 이름입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

적용 대상