Condividi tramite


Proprietà EntityCommand.EnablePlanCaching

[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 la memorizzazione nella cache dei piani di query è abilitata.

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

Sintassi

'Dichiarazione
Public Overridable Property EnablePlanCaching As Boolean 
    Get 
    Set
'Utilizzo
Dim instance As EntityCommand 
Dim value As Boolean 

value = instance.EnablePlanCaching

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

Valore proprietà

Tipo: System.Boolean
true la memorizzazione nella cache dei piani di query è abilitata; in caso contrario, false.

Vedere anche

Riferimento

EntityCommand Classe

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