Table of Contents

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

Type

Function

Gets the IDbFunction to which this parameter belongs.

IDbFunction Function { get; }

Property Value

IDbFunction

Name

Gets the parameter name.

string Name { get; }

Property Value

string

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

bool

StoreFunctionParameter

Gets the associated IStoreFunctionParameter.

IStoreFunctionParameter StoreFunctionParameter { get; }

Property Value

IStoreFunctionParameter

StoreType

Gets the store type of this parameter.

string StoreType { get; }

Property Value

string

TypeMapping

Gets the RelationalTypeMapping for this parameter.

RelationalTypeMapping TypeMapping { get; }

Property Value

RelationalTypeMapping