I'm porting my old project. It previously use Oracle.DataAccess.Client library to access with oracle database.
Now, I want to use Npgsql library to access with Postgresql database. So I need to porting the old c# code which use Oracle library method. For example, the old code use OracleCommand.ArrayBindCount property to insert multi rows at once.
But I do not see the similar method or property to do the same thing.
I want to know if there're similar ways to achieve it.