2 writes to spatialSvcs
System.Data.Entity (2)
System\Data\Spatial\DbGeography.cs (2)
33
this.
spatialSvcs
= spatialServices;
63
this.
spatialSvcs
= resolvedServices;
32 references to spatialSvcs
System.Data.Entity (32)
System\Data\Spatial\DbGeography.cs (32)
53
get { return this.
spatialSvcs
.CreateWellKnownValue(this); }
56
if (this.
spatialSvcs
!= null)
380
public int CoordinateSystemId { get { return this.
spatialSvcs
.GetCoordinateSystemId(this); } }
385
public int Dimension { get { return this.
spatialSvcs
.GetDimension(this); } }
390
public string SpatialTypeName { get { return this.
spatialSvcs
.GetSpatialTypeName(this); } }
395
public bool IsEmpty { get { return this.
spatialSvcs
.GetIsEmpty(this); } }
405
public string AsText() { return this.
spatialSvcs
.AsText(this); }
411
internal string AsTextIncludingElevationAndMeasure() { return this.
spatialSvcs
.AsTextIncludingElevationAndMeasure(this); }
417
public byte[] AsBinary() { return this.
spatialSvcs
.AsBinary(this); }
425
public string AsGml() { return this.
spatialSvcs
.AsGml(this); }
440
return this.
spatialSvcs
.SpatialEquals(this, other);
452
return this.
spatialSvcs
.Disjoint(this, other);
464
return this.
spatialSvcs
.Intersects(this, other);
483
return this.
spatialSvcs
.Buffer(this, distance.Value);
495
return this.
spatialSvcs
.Distance(this, other);
507
return this.
spatialSvcs
.Intersection(this, other);
519
return this.
spatialSvcs
.Union(this, other);
531
return this.
spatialSvcs
.Difference(this, other);
543
return this.
spatialSvcs
.SymmetricDifference(this, other);
554
public int? ElementCount { get { return this.
spatialSvcs
.GetElementCount(this); } }
563
return this.
spatialSvcs
.ElementAt(this, index);
574
public double? Latitude { get { return this.
spatialSvcs
.GetLatitude(this); } }
580
public double? Longitude { get { return this.
spatialSvcs
.GetLongitude(this); } }
586
public double? Elevation { get { return this.
spatialSvcs
.GetElevation(this); } }
592
public double? Measure { get { return this.
spatialSvcs
.GetMeasure(this); } }
601
public double? Length { get { return this.
spatialSvcs
.GetLength(this); } }
606
public DbGeography StartPoint { get { return this.
spatialSvcs
.GetStartPoint(this); } }
611
public DbGeography EndPoint { get { return this.
spatialSvcs
.GetEndPoint(this); } }
616
public bool? IsClosed { get { return this.
spatialSvcs
.GetIsClosed(this); } }
626
public int? PointCount { get { return this.
spatialSvcs
.GetPointCount(this); } }
635
return this.
spatialSvcs
.PointAt(this, index);
645
public double? Area { get { return this.
spatialSvcs
.GetArea(this); } }