MutableEntityTypeExtensions.AddIndexerProperty Method

Definition

Adds a property backed up by an indexer to this entity type.

public static Microsoft.EntityFrameworkCore.Metadata.IMutableProperty AddIndexerProperty (this Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType entityType, string name, Type propertyType);
static member AddIndexerProperty : Microsoft.EntityFrameworkCore.Metadata.IMutableEntityType * string * Type -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
<Extension()>
Public Function AddIndexerProperty (entityType As IMutableEntityType, name As String, propertyType As Type) As IMutableProperty

Parameters

entityType
IMutableEntityType

The entity type.

name
String

The name of the property to add.

propertyType
Type

The type of value the property will hold.

Returns

The newly created property.

Applies to