IRelationalModel.FindFunction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework