IMutableTypeBase.RemoveComplexProperty Method

Definition

Overloads

RemoveComplexProperty(IReadOnlyProperty)

Removes a property from this type.

RemoveComplexProperty(String)

Removes a property from this type.

RemoveComplexProperty(IReadOnlyProperty)

Removes a property from this type.

public Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty? RemoveComplexProperty (Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty property);
abstract member RemoveComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
Public Function RemoveComplexProperty (property As IReadOnlyProperty) As IMutableComplexProperty

Parameters

property
IReadOnlyProperty

The property to remove.

Returns

The removed property, or null if the property was not found.

Applies to

RemoveComplexProperty(String)

Removes a property from this type.

public Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty? RemoveComplexProperty (string name);
abstract member RemoveComplexProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IMutableComplexProperty
Public Function RemoveComplexProperty (name As String) As IMutableComplexProperty

Parameters

name
String

The name of the property to remove.

Returns

The removed property, or null if the property was not found.

Applies to