DbSpatialServices.Disjoint メソッド (DbGeography, DbGeography)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
2 つの指定した DbGeography 値が空間的に非結合であるかどうかを判断します。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public MustOverride Function Disjoint ( _
geographyValue As DbGeography, _
otherGeography As DbGeography _
) As Boolean
'使用
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim otherGeography As DbGeography
Dim returnValue As Boolean
returnValue = instance.Disjoint(geographyValue, _
otherGeography)
public abstract bool Disjoint(
DbGeography geographyValue,
DbGeography otherGeography
)
public:
virtual bool Disjoint(
DbGeography^ geographyValue,
DbGeography^ otherGeography
) abstract
abstract Disjoint :
geographyValue:DbGeography *
otherGeography:DbGeography -> bool
public abstract function Disjoint(
geographyValue : DbGeography,
otherGeography : DbGeography
) : boolean
パラメーター
- geographyValue
型 : System.Data.Entity.Spatial.DbGeography
結合解除を比較する最初の geography 値。
- otherGeography
型 : System.Data.Entity.Spatial.DbGeography
結合解除のために比較する 2 番目の geography 値。
戻り値
型 : System.Boolean
geographyValue が otherGeography から結合解除されている場合は true。それ以外の場合は false。
例外
例外 | 状態 |
---|---|
ArgumentNullException | geographyValue または otherGeography が null です。 |
ArgumentException | geographyValue または otherGeography は、この空間サービスの実装と互換性がありません。 |