Hello,
I'm using 5.12 (5.12.0) RTM, generating code for Postgresql against dotnet 9.0 using database first.
The database has columns defined with type geometry. LLBLGen reads the schema correctly and generates mapping classes that show the geometry type:
public NetTopologySuite.Geometries.Geometry Zoneshape { get; set; }
The constructor of the class that contains this property, has the following line:
this.Zoneshape = default(SD.LLBLGen.Pro.DBDriverCore.SpatialGeometry);
The last line fails with missing reference. I tried to find the assembly that contains the type SD.LLBLGen.Pro.DBDriverCore.SpatialGeometry and I can't find it. I can see the type referenced in the documentation here (https://www.llblgen.com/Documentation/5.12/ReferenceManuals/Designer/html/AACD8A09.htm). But I cannot find the name of the assembly I need to reference to obtain this type.
So the question is: which nuget package do I need to reference here?
Best