Condividi tramite


CosmosPropertyBuilderExtensions.ToJsonProperty Metodo

Definizione

Overload

ToJsonProperty(PropertyBuilder, String)

Configura il nome della proprietà a cui viene eseguito il mapping della proprietà quando la destinazione è Azure Cosmos.

ToJsonProperty(IConventionPropertyBuilder, String, Boolean)

Configura il nome della proprietà a cui viene eseguito il mapping della proprietà quando la destinazione è Azure Cosmos. Se viene specificata una stringa vuota, la proprietà non verrà mantenuta.

ToJsonProperty<TProperty>(PropertyBuilder<TProperty>, String)

Configura il nome della proprietà a cui viene eseguito il mapping della proprietà quando la destinazione è Azure Cosmos.

ToJsonProperty(PropertyBuilder, String)

Configura il nome della proprietà a cui viene eseguito il mapping della proprietà quando la destinazione è Azure Cosmos.

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

Parametri

propertyBuilder
PropertyBuilder

Generatore per la proprietà da configurare.

name
String

Nome della proprietà.

Restituisce

Stessa istanza del generatore in modo che più chiamate possano essere concatenati.

Commenti

Se viene specificata una stringa vuota, la proprietà non verrà salvata in modo permanente.

Per altre informazioni ed esempi, vedere Modellazione di tipi e relazioni di entità e Accesso ad Azure Cosmos DB con EF Core .

Si applica a

ToJsonProperty(IConventionPropertyBuilder, String, Boolean)

Configura il nome della proprietà a cui viene eseguito il mapping della proprietà quando la destinazione è Azure Cosmos. Se viene specificata una stringa vuota, la proprietà non verrà mantenuta.

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

Parametri

propertyBuilder
IConventionPropertyBuilder

Generatore per la proprietà da configurare.

name
String

Nome della proprietà.

fromDataAnnotation
Boolean

Indica se la configurazione è stata specificata utilizzando un'annotazione dati.

Restituisce

Stessa istanza del generatore se la configurazione è stata applicata; in caso contrario, null .

Commenti

Per altre informazioni ed esempi, vedere Modellazione di tipi e relazioni di entità e Accesso ad Azure Cosmos DB con EF Core .

Si applica a

ToJsonProperty<TProperty>(PropertyBuilder<TProperty>, String)

Configura il nome della proprietà a cui viene eseguito il mapping della proprietà quando la destinazione è Azure Cosmos.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> ToJsonProperty<TProperty> (this Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<TProperty> propertyBuilder, string name);
static member ToJsonProperty : Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder<'Property>
<Extension()>
Public Function ToJsonProperty(Of TProperty) (propertyBuilder As PropertyBuilder(Of TProperty), name As String) As PropertyBuilder(Of TProperty)

Parametri di tipo

TProperty

Tipo della proprietà configurata.

Parametri

propertyBuilder
PropertyBuilder<TProperty>

Generatore per la proprietà da configurare.

name
String

Nome della proprietà.

Restituisce

Stessa istanza del generatore in modo che più chiamate possano essere concatenati.

Commenti

Per altre informazioni ed esempi, vedere Modellazione di tipi e relazioni di entità e Accesso ad Azure Cosmos DB con EF Core .

Si applica a