Metodo DbExpression.FromInt64
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Crea un oggetto DbExpression che rappresenta il valore Int64 che ammette i valori Null specificato.
Spazio dei nomi: System.Data.Entity.Core.Common.CommandTrees
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Shared Function FromInt64 ( _
value As Nullable(Of Long) _
) As DbExpression
'Utilizzo
Dim value As Nullable(Of Long)
Dim returnValue As DbExpression
returnValue = DbExpression.FromInt64(value)
public static DbExpression FromInt64(
Nullable<long> value
)
public:
static DbExpression^ FromInt64(
Nullable<long long> value
)
static member FromInt64 :
value:Nullable<int64> -> DbExpression
public static function FromInt64(
value : Nullable<long>
) : DbExpression
Parametri
- value
Tipo: System.Nullable<Int64>
Valore Int64 su cui deve essere basata l'espressione restituita.
Valore restituito
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Oggetto DbExpression che rappresenta il valore Int64 specificato.