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