/// <summary> Determines whether this DbGeometry value spatially contains the specified DbGeometry argument. </summary> /// <returns>true if this geometry value contains other; otherwise false.</returns> /// <param name="other">The geometry value that should be compared with this geometry value for containment.</param> /// <exception cref="T:System.ArgumentNullException">other</exception> public bool Contains(DbGeometry other) { Check.NotNull(other, "other"); return(_spatialProvider.Contains(this, other)); }