Interface IDbFunctionParameter
- Namespace
- Microsoft.EntityFrameworkCore.Metadata
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
Represents a IDbFunction parameter.
public interface IDbFunctionParameter : IAnnotatable
- Extension Methods
Properties
ClrType
Gets the parameter type.
Type ClrType { get; }
Property Value
Function
Gets the IDbFunction to which this parameter belongs.
IDbFunction Function { get; }
Property Value
Name
Gets the parameter name.
string Name { get; }
Property Value
PropagatesNullability
Gets the value which indicates whether parameter propagates nullability, meaning if it's value is null the database function itself returns null.
bool PropagatesNullability { get; }
Property Value
StoreFunctionParameter
Gets the associated IStoreFunctionParameter.
IStoreFunctionParameter StoreFunctionParameter { get; }
Property Value
StoreType
Gets the store type of this parameter.
string StoreType { get; }
Property Value
TypeMapping
Gets the RelationalTypeMapping for this parameter.
RelationalTypeMapping TypeMapping { get; }