IMutableEntityType.AddIndexerProperty(String, Type) Method

Definition

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

public virtual Microsoft.EntityFrameworkCore.Metadata.IMutableProperty AddIndexerProperty (string name, Type propertyType);
abstract member AddIndexerProperty : string * Type -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
override this.AddIndexerProperty : string * Type -> Microsoft.EntityFrameworkCore.Metadata.IMutableProperty
Public Overridable Function AddIndexerProperty (name As String, propertyType As Type) As IMutableProperty

Parameters

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