SpatialEdmFunctions.SpatialWithin, 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 'SpatialWithin' canonique avec les arguments spécifiés, qui doivent tous avoir un résultat de type Edm.Geometry. Le type de résultat de l'expression est Edm.Boolean.
Espace de noms : System.Data.Entity.Core.Common.CommandTrees.ExpressionBuilder.Spatial
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function SpatialWithin ( _
geometryValue1 As DbExpression, _
geometryValue2 As DbExpression _
) As DbFunctionExpression
'Utilisation
Dim geometryValue1 As DbExpression
Dim geometryValue2 As DbExpression
Dim returnValue As DbFunctionExpression
returnValue = geometryValue1.SpatialWithin(geometryValue2)
public static DbFunctionExpression SpatialWithin(
this DbExpression geometryValue1,
DbExpression geometryValue2
)
[ExtensionAttribute]
public:
static DbFunctionExpression^ SpatialWithin(
DbExpression^ geometryValue1,
DbExpression^ geometryValue2
)
static member SpatialWithin :
geometryValue1:DbExpression *
geometryValue2:DbExpression -> DbFunctionExpression
public static function SpatialWithin(
geometryValue1 : DbExpression,
geometryValue2 : DbExpression
) : DbFunctionExpression
Paramètres
- geometryValue1
Type : System.Data.Entity.Core.Common.CommandTrees.DbExpression
Expression qui spécifie la première valeur géométrique.
- geometryValue2
Type : System.Data.Entity.Core.Common.CommandTrees.DbExpression
Expression qui spécifie la valeur de géométrie à comparer avec geometryValue1.
Valeur de retour
Type : System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Nouveau DbFunctionExpression qui retourne une valeur booléenne indiquant si geometryValue1 est spatialement dans geometryValue2.
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