We are trying to migrate a web forms (.NET Framework 4.6.1) project from SQL Server to Postgres. The company uses Entity Framework 6 for the creation of database first EDM's. We used NPGSQL and EntityFramework6.NPGSQL and the NPGSQL PostgreSQL Integration Extension for the creation of the new EDM's. However, when using the Add Function Import tool and trying to get column information for complex types generator, i get the following error:
"An exception of type "System.NotSupportedException" occurred while attempting to get columns information.The exception message is:The specified type is not supported by this selector."
Versions:
NPGSQL 6.0.9
EntityFramework6 6.4.4
EntityFramework6.NPGSQL 6.4.3
NPGSQL PostgreSQL Integration 4.1.12
.NET Framework 4.6.1
PostgreSQL 14.6
We tried modifying postgres functions and sp's to accept null params, based on the Get Column Information operation described on 5996887 but it didn't do anything.