SpatialEdmFunctions.SpatialDisjoint, 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 'SpatialDisjoint' 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 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 SpatialDisjoint ( _
spatialValue1 As DbExpression, _
spatialValue2 As DbExpression _
) As DbFunctionExpression
'Utilisation
Dim spatialValue1 As DbExpression
Dim spatialValue2 As DbExpression
Dim returnValue As DbFunctionExpression
returnValue = spatialValue1.SpatialDisjoint(spatialValue2)
public static DbFunctionExpression SpatialDisjoint(
this DbExpression spatialValue1,
DbExpression spatialValue2
)
[ExtensionAttribute]
public:
static DbFunctionExpression^ SpatialDisjoint(
DbExpression^ spatialValue1,
DbExpression^ spatialValue2
)
static member SpatialDisjoint :
spatialValue1:DbExpression *
spatialValue2:DbExpression -> DbFunctionExpression
public static function SpatialDisjoint(
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 la disjointure doit être comparée avec spatialValue1.
Valeur de retour
Type : System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
Nouveau DbFunctionExpression qui retourne une valeur booléenne indiquant si spatialValue1 et spatialValue2 sont disjoints de manière spatiale.
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