Interface IStoreFunctionParameter
- Namespace
- Microsoft.EntityFrameworkCore.Metadata
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
Represents a IStoreFunction parameter.
public interface IStoreFunctionParameter : IAnnotatable, IReadOnlyAnnotatable
Remarks
See Database functions for more information and examples.
Properties
DbFunctionParameters
Gets the associated IDbFunctionParameters.
IEnumerable<IDbFunctionParameter> DbFunctionParameters { get; }
Property Value
Function
Gets the IStoreFunction to which this parameter belongs.
IStoreFunction Function { get; }
Property Value
Name
Gets the parameter name.
string Name { get; }
Property Value
Type
Gets the store type of this parameter.
string Type { get; }
Property Value
Methods
ToDebugString(MetadataDebugStringOptions, int)
Creates a human-readable representation of the given metadata.
Warning: Do not rely on the format of the returned string. It is designed for debugging only and may change arbitrarily between releases.
string ToDebugString(MetadataDebugStringOptions options = 0, int indent = 0)
Parameters
options
MetadataDebugStringOptionsOptions for generating the string.
indent
intThe number of indent spaces to use before each new line.
Returns
- string
A human-readable representation.