I have a stored procedure that processes some data and returns the results. I am using a stored procedure to process this data on the sql server for performance reasons.
The user can filter what data they want processed ( Ie which locations they want the data processed for). I determine the locations that they are interested on the client by building a IPredicateDescription and then doing a typed entity query. This will give me a list of the locations on the client.
My problem is passing the list of locations ( id guids) back to the server so that the stored procedure can run and make the results for those locations.
The most elegant method I can come up with is to extract the SQL from the entity query, pass that string to the server stored procedure and get the results back.
I have considered the following
- I can't pass a list of Guids to the server because there is the potential for there to be far to many.
- I can't do one at a time because the time cost of calling the stored procedure through devforce is too great
- If i could pass a table of results to the stored procedure this might work, though I am not sure it is supported and it would not have as good a performance as just passing the sql
Does this make sense?
thanks for your help
Edited by murray.bryant - 13-Jun-2013 at 2:49am