Metodo DbExpressionBuilder.As (DbAggregate, String)
[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.]
Restituisce gli argomenti specificati come oggetto della coppia chiave/valore.
Spazio dei nomi: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
<ExtensionAttribute> _
Public Shared Function As ( _
value As DbAggregate, _
alias As String _
) As KeyValuePair(Of String, DbAggregate)
'Utilizzo
Dim value As DbAggregate
Dim alias As String
Dim returnValue As KeyValuePair(Of String, DbAggregate)
returnValue = value.As(alias)
public static KeyValuePair<string, DbAggregate> As(
this DbAggregate value,
string alias
)
[ExtensionAttribute]
public:
static KeyValuePair<String^, DbAggregate^> As(
DbAggregate^ value,
String^ alias
)
static member As :
value:DbAggregate *
alias:string -> KeyValuePair<string, DbAggregate>
public static function As(
value : DbAggregate,
alias : String
) : KeyValuePair<String, DbAggregate>
Parametri
- value
Tipo: System.Data.Entity.Core.Common.CommandTrees.DbAggregate
Valore nella coppia chiave/valore.
- alias
Tipo: System.String
Chiave nella coppia chiave/valore.
Valore restituito
Tipo: System.Collections.Generic.KeyValuePair<String, DbAggregate>
Oggetto della coppia chiave/valore.
Nota sull'utilizzo
In Visual Basic e C# è possibile chiamare questo metodo come metodo di istanza su qualsiasi oggetto di tipo DbAggregate. Per chiamare il metodo usando la sintassi del metodo di istanza, omettere il primo parametro. Per altre informazioni, vedere https://msdn.microsoft.com/it-it/library/bb384936(v=vs.113) o https://msdn.microsoft.com/it-it/library/bb383977(v=vs.113).
Vedere anche
Riferimento
Spazio dei nomi System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder