SpatialEdmFunctions.SpatialElementAt-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 DbFunctionExpression, das die kanonische 'SpatialElementAt'-Funktion mit den angegebenen Argumenten aufruft. Das erste Argument muss einen Edm.Geography- oder Edm.Geometry-Ergebnistyp haben. Das zweite Argument muss einen ganzzahligen numerischen Ergebnistyp aufweisen. Der Ergebnistyp des Ausdrucks ist derselbe wie der von spatialValue.
Namespace: System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder.Spatial
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function SpatialElementAt ( _
spatialValue As DbExpression, _
indexValue As DbExpression _
) As DbFunctionExpression
'Usage
Dim spatialValue As DbExpression
Dim indexValue As DbExpression
Dim returnValue As DbFunctionExpression
returnValue = spatialValue.SpatialElementAt(indexValue)
public static DbFunctionExpression SpatialElementAt(
this DbExpression spatialValue,
DbExpression indexValue
)
[ExtensionAttribute]
public:
static DbFunctionExpression^ SpatialElementAt(
DbExpression^ spatialValue,
DbExpression^ indexValue
)
static member SpatialElementAt :
spatialValue:DbExpression *
indexValue:DbExpression -> DbFunctionExpression
public static function SpatialElementAt(
spatialValue : DbExpression,
indexValue : DbExpression
) : DbFunctionExpression
Parameter
- spatialValue
Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein Ausdruck, der den Geografie- oder Geometriesammlungswert angibt.
- indexValue
Typ: System.Data.Entity.Core.Common.CommandTrees.DbExpression
Ein Ausdruck, der die Position des Elements angibt, das aus der Geometrie- oder Geografiesammlung abgerufen werden soll.
Rückgabewert
Typ: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Ein neuer DbFunctionExpression, der entweder das Sammlungselement an der Position indexValue in spatialValue oder NULL zurückgibt, wenn spatialValue keine Sammlung ist.
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).
Siehe auch
Verweis
System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder.Spatial-Namespace