This works fine;
<targets>
    <target name="database" xsi:type="Database"
            dbProvider="Npgsql.NpgsqlConnection, Npgsql"
            connectionString="User ID=postgres;Password=xxx;Host=192.xx;Port=5432;Database=xxx;">
      <!--Pooling=true;-->
      <commandText>
        insert into systemlogs(...;
      </commandText>
But when changed to table name as
"SystemLogs"
(same done in database as well) it throws exception; "couldnt find table name "systemlogs"
which make sense there isnt but why nlog dont realize updated table name?
 
     
    