Condividi tramite


Metodo DbExpression.FromDateTime

[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 DateTime 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 FromDateTime ( _
    value As Nullable(Of DateTime) _
) As DbExpression
'Utilizzo
Dim value As Nullable(Of DateTime)
Dim returnValue As DbExpression 

returnValue = DbExpression.FromDateTime(value)
public static DbExpression FromDateTime(
    Nullable<DateTime> value
)
public:
static DbExpression^ FromDateTime(
    Nullable<DateTime> value
)
static member FromDateTime : 
        value:Nullable<DateTime> -> DbExpression
public static function FromDateTime(
    value : Nullable<DateTime>
) : DbExpression

Parametri

Valore restituito

Tipo: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Oggetto DbExpression che rappresenta il valore DateTime specificato.

Vedere anche

Riferimento

DbExpression Classe

Spazio dei nomi System.Data.Entity.Core.Common.CommandTrees