Share via


QueryParameterExpression Constructors

Definition

Overloads

Name Description
QueryParameterExpression(String, Type)

Creates a new instance of the QueryParameterExpression class with associated query provider.

QueryParameterExpression(String, Type, ParameterTranslationMode)

Creates a new instance of the QueryParameterExpression class with associated query provider.

QueryParameterExpression(String, Type, Nullable<ParameterTranslationMode>, Boolean)

Creates a new instance of the QueryParameterExpression class with associated query provider.

QueryParameterExpression(String, Type)

Source:
QueryParameterExpression.cs

Creates a new instance of the QueryParameterExpression class with associated query provider.

public QueryParameterExpression(string name, Type type);
new Microsoft.EntityFrameworkCore.Query.QueryParameterExpression : string * Type -> Microsoft.EntityFrameworkCore.Query.QueryParameterExpression
Public Sub New (name As String, type As Type)

Parameters

name
String
type
Type

Applies to

QueryParameterExpression(String, Type, ParameterTranslationMode)

Source:
QueryParameterExpression.cs

Creates a new instance of the QueryParameterExpression class with associated query provider.

public QueryParameterExpression(string name, Type type, Microsoft.EntityFrameworkCore.ParameterTranslationMode translationMode);
new Microsoft.EntityFrameworkCore.Query.QueryParameterExpression : string * Type * Microsoft.EntityFrameworkCore.ParameterTranslationMode -> Microsoft.EntityFrameworkCore.Query.QueryParameterExpression
Public Sub New (name As String, type As Type, translationMode As ParameterTranslationMode)

Parameters

name
String
type
Type
translationMode
ParameterTranslationMode

Applies to

QueryParameterExpression(String, Type, Nullable<ParameterTranslationMode>, Boolean)

Source:
QueryParameterExpression.cs

Creates a new instance of the QueryParameterExpression class with associated query provider.

[System.Diagnostics.CodeAnalysis.Experimental("EF9100")]
public QueryParameterExpression(string name, Type type, Microsoft.EntityFrameworkCore.ParameterTranslationMode? translationMode, bool isNonNullableReferenceType);
[<System.Diagnostics.CodeAnalysis.Experimental("EF9100")>]
new Microsoft.EntityFrameworkCore.Query.QueryParameterExpression : string * Type * Nullable<Microsoft.EntityFrameworkCore.ParameterTranslationMode> * bool -> Microsoft.EntityFrameworkCore.Query.QueryParameterExpression
Public Sub New (name As String, type As Type, translationMode As Nullable(Of ParameterTranslationMode), isNonNullableReferenceType As Boolean)

Parameters

name
String
type
Type
isNonNullableReferenceType
Boolean
Attributes

Applies to