Hi There
trying to do some "quick and dirty" maintenenance screens for list / maintenence using datasource objects.
Typical Customer / orders scenario..
http
/localhost/mysite/Orders.aspx?CustomerID=1
I want the select parameter to use the query string entityaID to select only the related entities from the db.
e.g. select * from Orders where CustomerID = 1
Can I do that all with properties? I get an error saying
"A field or property with the name 'CustomerId' was not found on the selected data source."
Of course I could do it in the code behind. What is the fastest way to do this? Can you give an example?
Thanks
Marty