Its not supported? I get an exception when trying to insert data with command parameter set as:
var parameter = ((IDbDataParameter)cmd.Parameters[index]);
var list = (string[][])value;
parameter.Value = list;
With message
System.NotSupportedException: This .NET type is not supported in Npgsql or your PostgreSQL: System.String[][]
I'm using PostgreSQL 9.4 and created a column with type text[][]
. Since text[]
maps to string[]
without any issues, I can't see a reason why two dimensional arrays are not working.