DbSpatialServices.SymmetricDifference メソッド (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 SymmetricDifference ( _
geographyValue As DbGeography, _
otherGeography As DbGeography _
) As DbGeography
'使用
Dim instance As DbSpatialServices
Dim geographyValue As DbGeography
Dim otherGeography As DbGeography
Dim returnValue As DbGeography
returnValue = instance.SymmetricDifference(geographyValue, _
otherGeography)
public abstract DbGeography SymmetricDifference(
DbGeography geographyValue,
DbGeography otherGeography
)
public:
virtual DbGeography^ SymmetricDifference(
DbGeography^ geographyValue,
DbGeography^ otherGeography
) abstract
abstract SymmetricDifference :
geographyValue:DbGeography *
otherGeography:DbGeography -> DbGeography
public abstract function SymmetricDifference(
geographyValue : DbGeography,
otherGeography : DbGeography
) : DbGeography
パラメーター
- geographyValue
型 : System.Data.Entity.Spatial.DbGeography
最初の geography 値。
- otherGeography
型 : System.Data.Entity.Spatial.DbGeography
2 番目の geography 値。
戻り値
型 : System.Data.Entity.Spatial.DbGeography
geographyValue と otherGeography の対称差を表す新しい DbGeography 値。
例外
例外 | 状態 |
---|---|
ArgumentNullException | geographyValue または otherGeography が null です。 |
ArgumentException | geographyValue または otherGeography は、この空間サービスの実装と互換性がありません。 |