Share via


CosmosPropertyExtensions.SetPropertyName Method

Definition

Overloads

SetPropertyName(IMutableProperty, String)

Sets the property name used when targeting Cosmos.

SetPropertyName(IConventionProperty, String, Boolean)

Sets the property name used when targeting Cosmos.

SetPropertyName(IMutableProperty, String)

Source:
CosmosPropertyExtensions.cs
Source:
CosmosPropertyExtensions.cs

Sets the property name used when targeting Cosmos.

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

Parameters

property
IMutableProperty

The property.

name
String

The name to set.

Applies to

SetPropertyName(IConventionProperty, String, Boolean)

Source:
CosmosPropertyExtensions.cs
Source:
CosmosPropertyExtensions.cs

Sets the property name used when targeting Cosmos.

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

Parameters

property
IConventionProperty

The property.

name
String

The name to set.

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Applies to