Condividi tramite


Proprietà DbCommandTree.Parameters

[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 il nome e il tipo corrispondente di ogni parametro a cui è possibile fare riferimento all'interno di questo albero dei comandi.

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

Sintassi

'Dichiarazione
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public ReadOnly Property Parameters As IEnumerable(Of KeyValuePair(Of String, TypeUsage))
    Get
'Utilizzo
Dim instance As DbCommandTree 
Dim value As IEnumerable(Of KeyValuePair(Of String, TypeUsage))

value = instance.Parameters
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public IEnumerable<KeyValuePair<string, TypeUsage>> Parameters { get; }
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
property IEnumerable<KeyValuePair<String^, TypeUsage^>>^ Parameters {
    IEnumerable<KeyValuePair<String^, TypeUsage^>>^ get ();
}
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
member Parameters : IEnumerable<KeyValuePair<string, TypeUsage>>
function get Parameters () : IEnumerable<KeyValuePair<String, TypeUsage>>

Valore proprietà

Tipo: System.Collections.Generic.IEnumerable<KeyValuePair<String, TypeUsage>>
Nome e il tipo corrispondente di ogni parametro a cui è possibile fare riferimento all'interno di questo albero dei comandi.

Vedere anche

Riferimento

DbCommandTree Classe

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