Пример #1
0
 /// <summary> Computes the difference between this DbGeometry value and another DbGeometry value. </summary>
 /// <returns>A new DbGeometry value representing the difference between this geometry value and other.</returns>
 /// <param name="other">The geometry value for which the difference with this value should be computed.</param>
 /// <exception cref="T:System.ArgumentNullException">other</exception>
 public DbGeometry Difference(DbGeometry other)
 {
     Check.NotNull(other, "other");
     return(_spatialProvider.Difference(this, other));
 }