Is there a way to Transform a point to another SRID using EntityFrameworkCore?...previously I used ...ST_Transform(ST_GeomFromText(@coord,4326),32661)...My current code looks like this...var postgisGeometry = new PostgisPoint(lon, lat) {SRID = 4326};
...T...