Interface IFunctionMapping
- Namespace
- Microsoft.EntityFrameworkCore.Metadata
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
Represents entity type mapping to a function.
public interface IFunctionMapping : ITableMappingBase, IAnnotatable
- Inherited Members
- Extension Methods
Properties
ColumnMappings
Gets the properties mapped to columns on the target function.
IEnumerable<IFunctionColumnMapping> ColumnMappings { get; }
Property Value
DbFunction
Gets the target function.
IDbFunction DbFunction { get; }
Property Value
IsDefaultFunctionMapping
Gets the value indicating whether this is the function mapping that should be used when the entity type is queried.
bool IsDefaultFunctionMapping { get; }
Property Value
StoreFunction
Gets the target function.
IStoreFunction StoreFunction { get; }