Page 1 of 1

C# Tutorial

Posted: Fri 02 Nov 2007 08:19
by CNPSV
Can you please provide some tutorials for C# 2005 - mostly to be done in design mode:
- adding a new row
- editing a row
- master / detail grid, ....

Thanks[/list]

Posted: Fri 02 Nov 2007 09:40
by Alexey
For adding or editing rows use PgSqlDataAdapter or PgSqlDataTable components. Fill it with a valid select statement and press "Preview..." button.
For master/detail grid use two PgSqlDataTable components. Fill both with select statements. In the child one fill ParentRelation property.
That's it.