Hi,
I'm trying to convert from using in line sql to EF core.
Part of the original sql returns as one of the selected values are the area and perimeter of each geometry object.
This uses:
sdo_geom.sdo_area( os.geometry, 0.005 ) area
and sdo_geom.sdo_length( os.geometry, 0.005 ) perimeter
I cannot find any references on line as how to do this. I see Devart does things with NetTopologySuite but I don't have a license for that.
Doesn't Oracle's EntityFramework core nuget package support Geometry data types and functions?
Any help would be greatly appreciated.