Share via


DbExpressionBuilder.Parameter(TypeUsage, String) Method

Definition

Creates a new DbParameterReferenceExpression that references a parameter with the specified name and type.

public static System.Data.Entity.Core.Common.CommandTrees.DbParameterReferenceExpression Parameter (this System.Data.Entity.Core.Metadata.Edm.TypeUsage type, string name);
static member Parameter : System.Data.Entity.Core.Metadata.Edm.TypeUsage * string -> System.Data.Entity.Core.Common.CommandTrees.DbParameterReferenceExpression
<Extension()>
Public Function Parameter (type As TypeUsage, name As String) As DbParameterReferenceExpression

Parameters

type
TypeUsage

The type of the referenced parameter.

name
String

The name of the referenced parameter.

Returns

A DbParameterReferenceExpression that represents a reference to a parameter with the specified name and type. The result type of the expression will be the same as type.

Applies to