DbExpressionBuilder.Property-Methode (DbExpression, NavigationProperty)
[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 DbPropertyExpression, das das Abrufen der angegebenen Navigationseigenschaft darstellt.
Namespace: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification := "required for this feature")> _
<ExtensionAttribute> _
Public Shared Function Property ( _
instance As DbExpression, _
navigationProperty As NavigationProperty _
) As DbPropertyExpression
'Usage
Dim instance As DbExpression
Dim navigationProperty As NavigationProperty
Dim returnValue As DbPropertyExpression
returnValue = instance.Property(navigationProperty)
[SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification = "required for this feature")]
public static DbPropertyExpression Property(
this DbExpression instance,
NavigationProperty navigationProperty
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1011:ConsiderPassingBaseTypesAsParameters", Justification = L"required for this feature")]
[ExtensionAttribute]
public:
static DbPropertyExpression^ Property(
DbExpression^ instance,
NavigationProperty^ navigationProperty
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters", Justification = "required for this feature")>]
static member Property :
instance:DbExpression *
navigationProperty:NavigationProperty -> DbPropertyExpression
public static function Property(
instance : DbExpression,
navigationProperty : NavigationProperty
) : DbPropertyExpression
Parameter
- instance
Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Die Instanz, aus der die Navigationseigenschaft abgerufen werden soll.
- navigationProperty
Typ: System.Data.Entity.Core.Metadata.Edm.NavigationProperty
Metadaten für die abzurufende Navigationseigenschaft.
Rückgabewert
Typ: System.Data.Entity.Core.Common.CommandTrees.DbPropertyExpression
Ein neues DbPropertyExpression, das das Abrufen von Navigationseigenschaften darstellt.
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 | navigationProperty ist Null, oder instance ist Null. |
Siehe auch
Verweis
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder-Namespace