2 writes to CoordinateSystemId
System.Data.Entity (2)
System\Data\Spatial\DefaultSpatialServices.cs (1)
462
return new DbGeometryWellKnownValue() {
CoordinateSystemId
= backingValue.CoordinateSystemId, WellKnownBinary = backingValue.CloneBinary(), WellKnownText = backingValue.Text };
System\Data\SqlClient\SqlSpatialServices.cs (1)
205
(srid, wkb, wkt) => new DbGeometryWellKnownValue() {
CoordinateSystemId
= srid, WellKnownBinary = wkb, WellKnownText = wkt });
3 references to CoordinateSystemId
System.Data.Entity (3)
System\Data\Spatial\DefaultSpatialServices.cs (1)
455
return new ReadOnlySpatialValues(wellKnownValue.
CoordinateSystemId
, wellKnownValue.WellKnownText, wellKnownValue.WellKnownBinary, gmlValue: null);
System\Data\SqlClient\SqlSpatialServices.cs (2)
176
result = this.SqlTypes.SqlTypesGeometryFromText(wellKnownValue.WellKnownText, wellKnownValue.
CoordinateSystemId
);
180
result = this.SqlTypes.SqlTypesGeometryFromBinary(wellKnownValue.WellKnownBinary, wellKnownValue.
CoordinateSystemId
);