2 writes to WellKnownBinary
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 WellKnownBinary
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)
178
else if (wellKnownValue.
WellKnownBinary
!= null)
180
result = this.SqlTypes.SqlTypesGeometryFromBinary(wellKnownValue.
WellKnownBinary
, wellKnownValue.CoordinateSystemId);