RelationalPropertyExtensions.SetJsonPropertyName 方法

定义

重载

SetJsonPropertyName(IMutableProperty, String)

设置用于映射到 JSON 列的实体的给定属性的 JSON 属性值。

SetJsonPropertyName(IConventionProperty, String, Boolean)

设置用于映射到 JSON 列的实体的给定属性的 JSON 属性值。

SetJsonPropertyName(IMutableProperty, String)

设置用于映射到 JSON 列的实体的给定属性的 JSON 属性值。

public static void SetJsonPropertyName (this Microsoft.EntityFrameworkCore.Metadata.IMutableProperty property, string? name);
static member SetJsonPropertyName : Microsoft.EntityFrameworkCore.Metadata.IMutableProperty * string -> unit
<Extension()>
Public Sub SetJsonPropertyName (property As IMutableProperty, name As String)

参数

property
IMutableProperty

属性。

name
String

要使用的名称。

适用于

SetJsonPropertyName(IConventionProperty, String, Boolean)

设置用于映射到 JSON 列的实体的给定属性的 JSON 属性值。

public static string? SetJsonPropertyName (this Microsoft.EntityFrameworkCore.Metadata.IConventionProperty property, string? name, bool fromDataAnnotation = false);
static member SetJsonPropertyName : Microsoft.EntityFrameworkCore.Metadata.IConventionProperty * string * bool -> string
<Extension()>
Public Function SetJsonPropertyName (property As IConventionProperty, name As String, Optional fromDataAnnotation As Boolean = false) As String

参数

property
IConventionProperty

属性。

name
String

要使用的名称。

fromDataAnnotation
Boolean

指示配置是否是使用数据注释指定的。

返回

配置的值。

适用于