RelationalOwnedNavigationBuilderExtensions.ToJson 方法

定义

重载

ToJson(OwnedNavigationBuilder)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

ToJson(OwnedNavigationBuilder, String)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

ToJson<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

ToJson<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>, String)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

ToJson(OwnedNavigationBuilder)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToJson (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder builder);
static member ToJson : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToJson (builder As OwnedNavigationBuilder) As OwnedNavigationBuilder

参数

builder
OwnedNavigationBuilder

所配置自有导航的生成器。

返回

同一生成器实例,以便可以链接多个调用。

注解

应仅为给定所有权结构中外部拥有的实体指定此方法。 此 拥有的所有实体将自动映射到同一 JSON 列。 所有权仍必须显式定义。 导航的名称将用作 JSON 列名称。

适用于

ToJson(OwnedNavigationBuilder, String)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToJson (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder builder, string? jsonColumnName);
static member ToJson : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToJson (builder As OwnedNavigationBuilder, jsonColumnName As String) As OwnedNavigationBuilder

参数

builder
OwnedNavigationBuilder

所配置自有导航的生成器。

jsonColumnName
String

要使用的 JSON 列名称。

返回

同一生成器实例,以便可以链接多个调用。

注解

应仅为给定所有权结构中外部拥有的实体指定此方法。 此 拥有的所有实体将自动映射到同一 JSON 列。 所有权仍必须显式定义。

适用于

ToJson<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToJson<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> builder) where TOwnerEntity : class where TDependentEntity : class;
static member ToJson : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToJson(Of TOwnerEntity As Class, TDependentEntity As Class) (builder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)

类型参数

TOwnerEntity
TDependentEntity

参数

builder
OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>

所配置自有导航的生成器。

返回

同一生成器实例,以便可以链接多个调用。

注解

应仅为给定所有权结构中外部拥有的实体指定此方法。 此 拥有的所有实体将自动映射到同一 JSON 列。 所有权仍必须显式定义。 导航的名称将用作 JSON 列名称。

适用于

ToJson<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>, String)

配置此实体类型及其拥有的实体映射到数据库中的 JSON 列的关系。

public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToJson<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> builder, string? jsonColumnName) where TOwnerEntity : class where TDependentEntity : class;
static member ToJson : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToJson(Of TOwnerEntity As Class, TDependentEntity As Class) (builder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity), jsonColumnName As String) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)

类型参数

TOwnerEntity
TDependentEntity

参数

builder
OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>

所配置自有导航的生成器。

jsonColumnName
String

要使用的 JSON 列名称。

返回

同一生成器实例,以便可以链接多个调用。

注解

应仅为给定所有权结构中外部拥有的实体指定此方法。 此 拥有的所有实体将自动映射到同一 JSON 列。 所有权仍必须显式定义。

适用于