SpatialEdmFunctions.SpatialDisjoint Method (DbExpression, DbExpression)
Creates a DbFunctionExpression that invokes the canonical 'SpatialDisjoint' function with the specified arguments, which must each have an Edm.Geography or Edm.Geometry result type. The result type of spatialValue1 must match the result type of spatialValue2. The result type of the expression is Edm.Boolean.
Assembly: EntityFramework (in EntityFramework.dll)
public static DbFunctionExpression SpatialDisjoint( this DbExpression spatialValue1, DbExpression spatialValue2 )
Parameters
- spatialValue1
-
Type:
System.Data.Entity.Core.Common.CommandTrees.DbExpression
An expression that specifies the first spatial value.
- spatialValue2
-
Type:
System.Data.Entity.Core.Common.CommandTrees.DbExpression
An expression that specifies the spatial value that should be compared with spatialValue1 for disjointness.
Return Value
Type: System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpressionA new DbFunctionExpression that returns a Boolean value indicating whether spatialValue1 and spatialValue2 are spatially disjoint.