Freigeben über


SpatialEdmFunctions.IsClosedSpatial-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 'IsClosedSpatial'-Funktion mit dem angegebenen Argument aufruft, das den Ergebnistyp Edm.Geography oder Edm.Geometry aufweisen muss. Der Ergebnistyp ist Edm.Boolean.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function IsClosedSpatial ( _
    spatialValue As DbExpression _
) As DbFunctionExpression
'Usage
Dim spatialValue As DbExpression 
Dim returnValue As DbFunctionExpression 

returnValue = spatialValue.IsClosedSpatial()
public static DbFunctionExpression IsClosedSpatial(
    this DbExpression spatialValue
)
[ExtensionAttribute]
public:
static DbFunctionExpression^ IsClosedSpatial(
    DbExpression^ spatialValue
)
static member IsClosedSpatial : 
        spatialValue:DbExpression -> DbFunctionExpression
public static function IsClosedSpatial(
    spatialValue : DbExpression
) : DbFunctionExpression

Parameter

Rückgabewert

Typ: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Ein neuer DbFunctionExpression, der entweder einen booleschen Wert zurückgibt, der angibt, ob spatialValue geschlossen ist, oder NULL zurückgibt, wenn spatialValue keine Kurve 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).

Siehe auch

Verweis

SpatialEdmFunctions Klasse

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