NRE in PgSqlDataTable descendant when deleting UpdateCommands
Posted: Sun 09 Oct 2016 17:09
Hello,
Postgres 9.5 and latest dotConnect version installed.
Steps to reproduce:
1. Create a descendant of PgSqlDataTable:
2. Drop a MyDataTable on the form and connect them with PgSqlConnection
3. Insert SelectCommand:
4. Create Columns

5. Insert custom Insert / Update / Delete Command in the UpdateCommands tab in Editor:

6. Close the Editor with OK so the command gets created.
7. Open Editor again and delete the command using the remove button

This works fine with the standard PgSqlDataTable
Postgres 9.5 and latest dotConnect version installed.
Steps to reproduce:
1. Create a descendant of PgSqlDataTable:
Code: Select all
public partial class MyDataTable : Devart.Data.PostgreSql.PgSqlDataTable
{
public MyDataTable()
{
}
}
3. Insert SelectCommand:
Code: Select all
select * from actors

5. Insert custom Insert / Update / Delete Command in the UpdateCommands tab in Editor:

6. Close the Editor with OK so the command gets created.
7. Open Editor again and delete the command using the remove button

This works fine with the standard PgSqlDataTable