Skip to content

NetTopologySuite.Geometries.Polygon  #765

@afust003

Description

@afust003

We have an EF Core 5 migration against Postgres 13.6 server for a model that is generating the following migration for a PostGIS v3.2 field:

Field:

public ntsGeometries.Polygon ATDLocation { get; set; }

Migration:
image

The problem is that RPG brings in the field as a string with the following user-defined configuration.
RPG field

public string AtdLocation { get; set; } // ATDLocation

RPG Configuration:

builder.Property(x => x.AtdLocation).HasColumnName(@"ATDLocation").HasColumnType("user-defined").IsRequired();

Does RPG support PostGIS data types? If not, what is a good work-around besides having to manually (a) excluding the table (b) manually including each model + configuration + their relationships for those models that contain PostGIS data types?

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions