DbExpression.FromSingle(Nullable<Single>) Method

Definition

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

public:
 static System::Data::Common::CommandTrees::DbExpression ^ FromSingle(Nullable<float> value);
public static System.Data.Common.CommandTrees.DbExpression FromSingle (float? value);
static member FromSingle : Nullable<single> -> System.Data.Common.CommandTrees.DbExpression
Public Shared Function FromSingle (value As Nullable(Of Single)) As DbExpression

Parameters

value
Nullable<Single>

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

Returns

A DbExpression that represents the specified Single value.

Applies to