2 writes to spatialSvcs
System.Data.Entity (2)
System\Data\Spatial\DbGeometry.cs (2)
33
this.
spatialSvcs
= spatialServices;
63
this.
spatialSvcs
= resolvedServices;
49 references to spatialSvcs
System.Data.Entity (49)
System\Data\Spatial\DbGeometry.cs (49)
53
get { return this.
spatialSvcs
.CreateWellKnownValue(this); }
56
if (this.
spatialSvcs
!= null)
380
public int CoordinateSystemId { get { return this.
spatialSvcs
.GetCoordinateSystemId(this); } }
385
public DbGeometry Boundary { get { return this.
spatialSvcs
.GetBoundary(this); } }
390
public int Dimension { get { return this.
spatialSvcs
.GetDimension(this); } }
395
public DbGeometry Envelope { get { return this.
spatialSvcs
.GetEnvelope(this); } }
400
public string SpatialTypeName { get { return this.
spatialSvcs
.GetSpatialTypeName(this); } }
405
public bool IsEmpty { get { return this.
spatialSvcs
.GetIsEmpty(this); } }
410
public bool IsSimple { get { return this.
spatialSvcs
.GetIsSimple(this); } }
415
public bool IsValid { get { return this.
spatialSvcs
.GetIsValid(this); } }
425
public string AsText() { return this.
spatialSvcs
.AsText(this); }
431
internal string AsTextIncludingElevationAndMeasure() { return this.
spatialSvcs
.AsTextIncludingElevationAndMeasure(this); }
437
public byte[] AsBinary() { return this.
spatialSvcs
.AsBinary(this); }
445
public string AsGml() { return this.
spatialSvcs
.AsGml(this); }
460
return this.
spatialSvcs
.SpatialEquals(this, other);
472
return this.
spatialSvcs
.Disjoint(this, other);
484
return this.
spatialSvcs
.Intersects(this, other);
496
return this.
spatialSvcs
.Touches(this, other);
508
return this.
spatialSvcs
.Crosses(this, other);
520
return this.
spatialSvcs
.Within(this, other);
532
return this.
spatialSvcs
.Contains(this, other);
544
return this.
spatialSvcs
.Overlaps(this, other);
559
return this.
spatialSvcs
.Relate(this, other, matrix);
578
return this.
spatialSvcs
.Buffer(this, distance.Value);
590
return this.
spatialSvcs
.Distance(this, other);
596
public DbGeometry ConvexHull { get { return this.
spatialSvcs
.GetConvexHull(this); } }
607
return this.
spatialSvcs
.Intersection(this, other);
619
return this.
spatialSvcs
.Union(this, other);
631
return this.
spatialSvcs
.Difference(this, other);
643
return this.
spatialSvcs
.SymmetricDifference(this, other);
654
public int? ElementCount { get { return this.
spatialSvcs
.GetElementCount(this); } }
663
return this.
spatialSvcs
.ElementAt(this, index);
674
public double? XCoordinate { get { return this.
spatialSvcs
.GetXCoordinate(this); } }
680
public double? YCoordinate { get { return this.
spatialSvcs
.GetYCoordinate(this); } }
686
public double? Elevation { get { return this.
spatialSvcs
.GetElevation(this); } }
692
public double? Measure { get { return this.
spatialSvcs
.GetMeasure(this); } }
701
public double? Length { get { return this.
spatialSvcs
.GetLength(this); } }
706
public DbGeometry StartPoint { get { return this.
spatialSvcs
.GetStartPoint(this); } }
711
public DbGeometry EndPoint { get { return this.
spatialSvcs
.GetEndPoint(this); } }
716
public bool? IsClosed { get { return this.
spatialSvcs
.GetIsClosed(this); } }
721
public bool? IsRing { get { return this.
spatialSvcs
.GetIsRing(this); } }
731
public int? PointCount { get { return this.
spatialSvcs
.GetPointCount(this); } }
740
return this.
spatialSvcs
.PointAt(this, index);
750
public double? Area { get { return this.
spatialSvcs
.GetArea(this); } }
756
public DbGeometry Centroid { get { return this.
spatialSvcs
.GetCentroid(this); } }
761
public DbGeometry PointOnSurface { get { return this.
spatialSvcs
.GetPointOnSurface(this); } }
770
public DbGeometry ExteriorRing { get { return this.
spatialSvcs
.GetExteriorRing(this); } }
776
public int? InteriorRingCount { get { return this.
spatialSvcs
.GetInteriorRingCount(this); } }
785
return this.
spatialSvcs
.InteriorRingAt(this, index);