Condividi tramite


Proprietà EntityParameter.IsNullable

[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.]

Ottiene o imposta un valore che indica se il parametro ammette valori Null.

Spazio dei nomi:  System.Data.Entity.Core.EntityClient
Assembly:  EntityFramework (in EntityFramework.dll)

Sintassi

'Dichiarazione
Public Overrides Property IsNullable As Boolean 
    Get 
    Set
'Utilizzo
Dim instance As EntityParameter 
Dim value As Boolean 

value = instance.IsNullable

instance.IsNullable = value
public override bool IsNullable { get; set; }
public:
virtual property bool IsNullable {
    bool get () override;
    void set (bool value) override;
}
abstract IsNullable : bool with get, set 
override IsNullable : bool with get, set
override function get IsNullable () : boolean 
override function set IsNullable (value : boolean)

Valore proprietà

Tipo: System.Boolean
true se sono accettati valori Null; in caso contrario, false.

Implements

IDataParameter.IsNullable

Vedere anche

Riferimento

EntityParameter Classe

Spazio dei nomi System.Data.Entity.Core.EntityClient