共用方式為


DbSpatialServices.Difference 方法

定義

多載

Difference(DbGeography, DbGeography)

計算兩個 DbGeography 值之間的差異。

Difference(DbGeometry, DbGeometry)

計算兩個 DbGeometry 值之間的差異。

Difference(DbGeography, DbGeography)

計算兩個 DbGeography 值之間的差異。

public abstract System.Data.Entity.Spatial.DbGeography Difference(System.Data.Entity.Spatial.DbGeography geographyValue, System.Data.Entity.Spatial.DbGeography otherGeography);
abstract member Difference : System.Data.Entity.Spatial.DbGeography * System.Data.Entity.Spatial.DbGeography -> System.Data.Entity.Spatial.DbGeography
Public MustOverride Function Difference (geographyValue As DbGeography, otherGeography As DbGeography) As DbGeography

參數

geographyValue
DbGeography

第一個地理位置值。

otherGeography
DbGeography

第二個地理位置值。

傳回

新的 DbGeography 值,代表 geographyValue 和其他Geography 的差異。

例外狀況

geographyValueotherGeography 為 null。

geographyValueotherGeography 與這個空間服務實作不相容。

適用於

Difference(DbGeometry, DbGeometry)

計算兩個 DbGeometry 值之間的差異。

public abstract System.Data.Entity.Spatial.DbGeometry Difference(System.Data.Entity.Spatial.DbGeometry geometryValue, System.Data.Entity.Spatial.DbGeometry otherGeometry);
abstract member Difference : System.Data.Entity.Spatial.DbGeometry * System.Data.Entity.Spatial.DbGeometry -> System.Data.Entity.Spatial.DbGeometry
Public MustOverride Function Difference (geometryValue As DbGeometry, otherGeometry As DbGeometry) As DbGeometry

參數

geometryValue
DbGeometry

第一個幾何值。

otherGeometry
DbGeometry

第二個幾何值。

傳回

新的 DbGeometry 值,代表 geometryValue 與其他Geometry 之間的差異。

例外狀況

geometryValueotherGeometry 為 null。

geometryValueotherGeometry 與這個空間服務實作不相容。

適用於