Support for postgresql array fields

I’m trying to save a c# poco with a string[] array property into a postgres array field.

This syntax should be : INSERT INTO table VALUES (’{10001, 10002, 10003, 10004}’}

a new OrmLiteConverter?

INSERT’s use parameterized values so hopefully will still work when passed as a string param.

Yeah individual Type Converters would be needed, but makes more sense to create a separate PostgreSQL Dialect provider that has all PgSQL supported types already wired up. It’s on the TODO list.