IMutableEntityType.FindServiceProperty(String) Method

Definition

Gets the service property with a given name. Returns null if no property with the given name is defined.

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

Parameters

name
String

The name of the service property.

Returns

The service property, or null if none is found.

Remarks

This API only finds service properties and does not find scalar or navigation properties.

Applies to