DbExpression.FromByte(Nullable<Byte>) Method

Definition

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

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

Parameters

value
Nullable<Byte>

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

Returns

A DbExpression that represents the specified byte value.

Applies to