SpatialEdmFunctions.SpatialIntersection, méthode
[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]
Crée un objet DbFunctionExpression appelant la fonction 'SpatialIntersection' canonique avec les arguments spécifiés, qui doivent tous avoir un résultat de type Edm.Geography ou Edm.Geometry. Le type de résultat de spatialValue1 doit correspondre au type de résultat de spatialValue2. Le type de résultat de l'expression est le même que le type de spatialValue1 et spatialValue2.
Espace de noms : System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder.Spatial
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function SpatialIntersection ( _
spatialValue1 As DbExpression, _
spatialValue2 As DbExpression _
) As DbFunctionExpression
'Utilisation
Dim spatialValue1 As DbExpression
Dim spatialValue2 As DbExpression
Dim returnValue As DbFunctionExpression
returnValue = spatialValue1.SpatialIntersection(spatialValue2)
public static DbFunctionExpression SpatialIntersection(
this DbExpression spatialValue1,
DbExpression spatialValue2
)
[ExtensionAttribute]
public:
static DbFunctionExpression^ SpatialIntersection(
DbExpression^ spatialValue1,
DbExpression^ spatialValue2
)
static member SpatialIntersection :
spatialValue1:DbExpression *
spatialValue2:DbExpression -> DbFunctionExpression
public static function SpatialIntersection(
spatialValue1 : DbExpression,
spatialValue2 : DbExpression
) : DbFunctionExpression
Paramètres
- spatialValue1
Type : System.Data.Entity.Core.Common.CommandTrees.DbExpression
Expression qui spécifie la première valeur spatiale.
- spatialValue2
Type : System.Data.Entity.Core.Common.CommandTrees.DbExpression
Expression qui spécifie la valeur spatiale pour laquelle l'intersection avec spatialValue1 doit être calculée.
Valeur de retour
Type : System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Nouveau DbFunctionExpression qui retourne la valeur spatiale représentant l'intersection de spatialValue1 et spatialValue2.
Remarque sur l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme une méthode d'instance sur n'importe quel objet de type DbExpression. Lorsque vous utilisez la syntaxe des méthodes d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=vs.113) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=vs.113).
Voir aussi
Référence
Espace de noms System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder.Spatial