Freigeben über


DbExpressionBuilder.TreatAs-Methode

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Erstellt ein neues DbTreatExpression.

Namespace:  System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function TreatAs ( _
    argument As DbExpression, _
    treatType As TypeUsage _
) As DbTreatExpression
'Usage
Dim argument As DbExpression 
Dim treatType As TypeUsage 
Dim returnValue As DbTreatExpression 

returnValue = argument.TreatAs(treatType)
public static DbTreatExpression TreatAs(
    this DbExpression argument,
    TypeUsage treatType
)
[ExtensionAttribute]
public:
static DbTreatExpression^ TreatAs(
    DbExpression^ argument, 
    TypeUsage^ treatType
)
static member TreatAs : 
        argument:DbExpression * 
        treatType:TypeUsage -> DbTreatExpression
public static function TreatAs(
    argument : DbExpression, 
    treatType : TypeUsage
) : DbTreatExpression

Parameter

Rückgabewert

Typ: System.Data.Entity.Core.Common.CommandTrees.DbTreatExpression
Ein neues DbTreatExpression mit dem angegebenen Argument und Typ.

Hinweis zur Verwendung

In Visual Basic und C# können Sie diese Methode als Instanzenmethode für ein beliebiges Objekt vom Typ DbExpression aufrufen. Bei Verwendung der Syntax für Instanzenmethoden lassen Sie den ersten Parameter aus. Weitere Informationen finden Sie unter https://msdn.microsoft.com/de-de/library/bb384936(v=vs.113) oder https://msdn.microsoft.com/de-de/library/bb383977(v=vs.113).

Ausnahmen

Ausnahme Bedingung
ArgumentNullException

argument oder treatType ist null.

ArgumentException

treatType befindet sich nicht in der gleichen Typenhierarchie wie der Ergebnistyp von argument.

Hinweise

DbTreatExpression erfordert, dass argument einen polymorphen Ergebnistyp aufweist und dass treatType ein Typ von derselben Typhierarchie wie dieser Ergebnistyp ist.

Siehe auch

Verweis

DbExpressionBuilder Klasse

System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder-Namespace