Can I reuse an existing result set to filter?
Lets say I have a result set that contains all data.
Then I want to filter that resultset.
Can I just execute the sqlcommand on the same resultset? I tried and it didn't seem to work. Does someone know the reason?
So the only way to make it work was to create a new resultset and execute the command on that one. So this way I'm always creating a new resulset, can this have some issue?