ObjectDataSource and Smart Objects
Hi everyone,
I have an object Product with properties and add, save, remove methods. These methods do not accept any arguments. ObjectDatasource lets us use methods that have either another object as parameter or a parameter for each value. This is just absurd. What if someone wants something like:
Dim P as New Product
P.Name = "ABC"
...
...
P.Save()
This seems a reasonable thing but how can I do this with ObjectDataSource?
Tahir
|