DbGeometry.Difference メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
この DbGeometry 値と別の DbGeometry 値の差を計算します。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function Difference ( _
other As DbGeometry _
) As DbGeometry
'使用
Dim instance As DbGeometry
Dim other As DbGeometry
Dim returnValue As DbGeometry
returnValue = instance.Difference(other)
public DbGeometry Difference(
DbGeometry other
)
public:
DbGeometry^ Difference(
DbGeometry^ other
)
member Difference :
other:DbGeometry -> DbGeometry
public function Difference(
other : DbGeometry
) : DbGeometry
パラメーター
- other
型 : System.Data.Entity.Spatial.DbGeometry
この値との差を計算する必要がある geometry 値。
戻り値
型 : System.Data.Entity.Spatial.DbGeometry
この geometry 値と other の差を表す新しい DbGeometry 値。
例外
例外 | 状態 |
---|---|
ArgumentNullException | other が null です。 |