DbExpression.FromInt32(Nullable<Int32>) Method

Definition

Creates a DbExpression that represents the specified (nullable) Int32 value.

public:
 static System::Data::Common::CommandTrees::DbExpression ^ FromInt32(Nullable<int> value);
public static System.Data.Common.CommandTrees.DbExpression FromInt32 (int? value);
static member FromInt32 : Nullable<int> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Function FromInt32 (value As Nullable(Of Integer)) As DbExpression

Parameters

value
Nullable<Int32>

The Int32 value on which the returned expression should be based.

Returns

A DbExpression that represents the specified Int32 value.

Applies to