IConventionForeignKeyBuilder.CanSetForeignKey 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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);
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);
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
如果给定属性可以设置为外键,则为 。