Share via


RuntimeEntityType.FindServiceProperty(String) Method

Definition

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

public virtual Microsoft.EntityFrameworkCore.Metadata.RuntimeServiceProperty? FindServiceProperty (string name);
abstract member FindServiceProperty : string -> Microsoft.EntityFrameworkCore.Metadata.RuntimeServiceProperty
override this.FindServiceProperty : string -> Microsoft.EntityFrameworkCore.Metadata.RuntimeServiceProperty
Public Overridable Function FindServiceProperty (name As String) As RuntimeServiceProperty

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