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