Condividi tramite


Proprietà ObjectContextOptions.ProxyCreationEnabled

[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 booleano che determina se vengono create istanze proxy per classi di dati personalizzate che non riconoscono la persistenza.

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

Sintassi

'Dichiarazione
Public Property ProxyCreationEnabled As Boolean 
    Get 
    Set
'Utilizzo
Dim instance As ObjectContextOptions 
Dim value As Boolean 

value = instance.ProxyCreationEnabled

instance.ProxyCreationEnabled = value
public bool ProxyCreationEnabled { get; set; }
public:
property bool ProxyCreationEnabled {
    bool get ();
    void set (bool value);
}
member ProxyCreationEnabled : bool with get, set
function get ProxyCreationEnabled () : boolean 
function set ProxyCreationEnabled (value : boolean)

Valore proprietà

Tipo: System.Boolean
true se vengono creati proxy; in caso contrario, false.Il valore predefinito è true.

Vedere anche

Riferimento

ObjectContextOptions Classe

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