I'm trying to create a member page for updating account details. I want to populate a form with the member's data, but I don't know how to set a filter on the EntityDataSource to limit the query.
When I set the select statement based on the member ID, I get the error
Select cannot be set if EnableDelete, EnableInsert, or EnableUpdate is enabled.
I think this is because you can't update a projection or something, but is there anyway around this?
Or do I have to run a query in Page_Load and populate the form myself?