DbGeometry.Contains メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
この DbGeometry 値が指定した DbGeometry 引数を空間的に含んでいるかどうかを判断します。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function Contains ( _
other As DbGeometry _
) As Boolean
'使用
Dim instance As DbGeometry
Dim other As DbGeometry
Dim returnValue As Boolean
returnValue = instance.Contains(other)
public bool Contains(
DbGeometry other
)
public:
bool Contains(
DbGeometry^ other
)
member Contains :
other:DbGeometry -> bool
public function Contains(
other : DbGeometry
) : boolean
パラメーター
- other
型 : System.Data.Entity.Spatial.DbGeometry
この geometry 値とコンテインメントを比較する必要がある geometry 値。
戻り値
型 : System.Boolean
この geometry 値に other が含まれている場合は true。それ以外の場合は false。
例外
例外 | 状態 |
---|---|
ArgumentNullException | other が null です。 |