2 writes to CoordinateSystemId
System.Data.Entity (2)
System\Data\Spatial\DefaultSpatialServices.cs (1)
462return 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)
455return new ReadOnlySpatialValues(wellKnownValue.CoordinateSystemId, wellKnownValue.WellKnownText, wellKnownValue.WellKnownBinary, gmlValue: null);
System\Data\SqlClient\SqlSpatialServices.cs (2)
176result = this.SqlTypes.SqlTypesGeometryFromText(wellKnownValue.WellKnownText, wellKnownValue.CoordinateSystemId); 180result = this.SqlTypes.SqlTypesGeometryFromBinary(wellKnownValue.WellKnownBinary, wellKnownValue.CoordinateSystemId);