Condividi tramite


Proprietà EntityCommand.CommandTree

[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 l'albero dei comandi da eseguire. È possibile impostare solo un albero dei comandi o il testo del comando, non entrambi.

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

Sintassi

'Dichiarazione
Public Overridable Property CommandTree As DbCommandTree 
    Get 
    Set
'Utilizzo
Dim instance As EntityCommand 
Dim value As DbCommandTree 

value = instance.CommandTree

instance.CommandTree = value
public virtual DbCommandTree CommandTree { get; set; }
public:
virtual property DbCommandTree^ CommandTree {
    DbCommandTree^ get ();
    void set (DbCommandTree^ value);
}
abstract CommandTree : DbCommandTree with get, set 
override CommandTree : DbCommandTree with get, set
function get CommandTree () : DbCommandTree 
function set CommandTree (value : DbCommandTree)

Valore proprietà

Tipo: System.Data.Entity.Core.Common.CommandTrees.DbCommandTree
Albero dei comandi da eseguire.

Vedere anche

Riferimento

EntityCommand Classe

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