Hello,
This is a follow up to #315. I had attempted to implement array_to_tsvector but in the process I had to implement a visitor for array expressions in NpgsqlSqlTranslatingExpressionVisitor and NpgsqlQuerySqlGenerator. This led to problems with Postgresql requiring all array elements needing have the same type and weird cases where internal EF Core array structures ended up trying to get translated and breaking hundreds of tests.
I concluded that EF Core cannot handle arrays as first class data types, and I undid the changes. Investigate this later when EF Core can handle arrays properly.
Hello,
This is a follow up to #315. I had attempted to implement
array_to_tsvectorbut in the process I had to implement a visitor for array expressions inNpgsqlSqlTranslatingExpressionVisitorandNpgsqlQuerySqlGenerator. This led to problems with Postgresql requiring all array elements needing have the same type and weird cases where internal EF Core array structures ended up trying to get translated and breaking hundreds of tests.I concluded that EF Core cannot handle arrays as first class data types, and I undid the changes. Investigate this later when EF Core can handle arrays properly.