-
Notifications
You must be signed in to change notification settings - Fork 224
Closed
Description
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; }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; } // ATDLocationRPG 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!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
