Interface IDbFunction
- Namespace
- Microsoft.EntityFrameworkCore.Metadata
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
Represents a relational database function in a model.
public interface IDbFunction : IReadOnlyDbFunction, IReadOnlyAnnotatable, IAnnotatable
- Inherited Members
Remarks
See Database functions for more information and examples.
Properties
Model
Gets the model in which this function is defined.
IModel Model { get; }
Property Value
- IModel
Parameters
Gets the parameters for this function
IReadOnlyList<IDbFunctionParameter> Parameters { get; }
Property Value
StoreFunction
Gets the associated IStoreFunction.
IStoreFunction StoreFunction { get; }