Share via


IRelationalModel.FindFunction Method

Definition

Finds a IStoreFunction with the given signature.

public Microsoft.EntityFrameworkCore.Metadata.IStoreFunction FindFunction (string name, string schema, System.Collections.Generic.IReadOnlyList<string> parameters);
public Microsoft.EntityFrameworkCore.Metadata.IStoreFunction? FindFunction (string name, string? schema, System.Collections.Generic.IReadOnlyList<string> parameters);
abstract member FindFunction : string * string * System.Collections.Generic.IReadOnlyList<string> -> Microsoft.EntityFrameworkCore.Metadata.IStoreFunction
Public Function FindFunction (name As String, schema As String, parameters As IReadOnlyList(Of String)) As IStoreFunction

Parameters

name
String

The name of the function.

schema
String

The schema of the function.

parameters
IReadOnlyList<String>

A list of parameter types.

Returns

The IStoreFunction or null if no function with the given name was found.

Applies to