IEntityType.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.IServiceProperty FindServiceProperty (string name);
public Microsoft.EntityFrameworkCore.Metadata.IServiceProperty? FindServiceProperty (string name);
abstract member FindServiceProperty : string -> Microsoft.EntityFrameworkCore.Metadata.IServiceProperty
Public Function FindServiceProperty (name As String) As IServiceProperty

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