J
Joe Kovac
Hi!
The informations of our customers are saved in two tables:
Customer: ID, CustomerNumber, ... + Person_ID
Person: ID, Name, ...
I want to have an editable GridView displaying all the data and being
able to add, edit and delete customers.
The select is very easy:
SELECT CustomerNumber, Name FROM Customer, Person
WHERE Customer.Person_ID = Person.ID
But what am I to do with the UDATE, DELETE and INSERT?
Is the SQLDataSource the right option?
Creating custom BusinessObjects and custom BusinessObject adapters is
very much work and I found no good sample for such a case, where
everything is supported, including sorting, etc.
Thanks for your help
Joe
The informations of our customers are saved in two tables:
Customer: ID, CustomerNumber, ... + Person_ID
Person: ID, Name, ...
I want to have an editable GridView displaying all the data and being
able to add, edit and delete customers.
The select is very easy:
SELECT CustomerNumber, Name FROM Customer, Person
WHERE Customer.Person_ID = Person.ID
But what am I to do with the UDATE, DELETE and INSERT?
Is the SQLDataSource the right option?
Creating custom BusinessObjects and custom BusinessObject adapters is
very much work and I found no good sample for such a case, where
everything is supported, including sorting, etc.
Thanks for your help
Joe