共用方式為


IConventionRelationshipBuilder.CanSetForeignKey 方法

定義

多載

CanSetForeignKey(IReadOnlyList<IConventionProperty>, Boolean)

傳回值,指出指定的屬性是否可以從目前的組態來源設定為這個關聯性的外鍵。

CanSetForeignKey(IReadOnlyList<String>, Boolean)

傳回值,指出指定的屬性是否可以從目前的組態來源設定為這個關聯性的外鍵。

CanSetForeignKey(IReadOnlyList<IConventionProperty>, Boolean)

傳回值,指出指定的屬性是否可以從目前的組態來源設定為這個關聯性的外鍵。

public bool CanSetForeignKey (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IConventionProperty> properties, bool fromDataAnnotation = false);
abstract member CanSetForeignKey : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IConventionProperty> * bool -> bool
Public Function CanSetForeignKey (properties As IReadOnlyList(Of IConventionProperty), Optional fromDataAnnotation As Boolean = false) As Boolean

參數

properties
IReadOnlyList<IConventionProperty>

要作為這個關聯性外鍵的屬性。

fromDataAnnotation
Boolean

指出是否已使用資料批註指定組態。

傳回

true 如果指定的屬性可以設定為外鍵,則為 。

適用於

CanSetForeignKey(IReadOnlyList<String>, Boolean)

傳回值,指出指定的屬性是否可以從目前的組態來源設定為這個關聯性的外鍵。

public bool CanSetForeignKey (System.Collections.Generic.IReadOnlyList<string> propertyNames, bool fromDataAnnotation = false);
abstract member CanSetForeignKey : System.Collections.Generic.IReadOnlyList<string> * bool -> bool
Public Function CanSetForeignKey (propertyNames As IReadOnlyList(Of String), Optional fromDataAnnotation As Boolean = false) As Boolean

參數

propertyNames
IReadOnlyList<String>

要作為這個關聯性外鍵的屬性。

fromDataAnnotation
Boolean

指出是否已使用資料批註指定組態。

傳回

true 如果指定的屬性可以設定為外鍵,則為 。

適用於