I want to use LINQ to call stored procedure in this way but stored procedure I want to call contain SQL string that executed by

EXEC sp_executesql @strSQL

In this way Visual Studio does not generate result class. To resolve this problem I execute SQL string by

INSERT INTO @Temp EXEC sp_executesql @strSQL
SELECT * from @Temp

Maybe it is not the best way but it works. The problem is that it sometimes return items in wrong sequence. How to fix it?

link|improve this question

71% accept rate
Why do you use sp_executesql ? – Bas Brekelmans Jan 3 at 16:00
3  
This question scares me. – Hogan Jan 3 at 16:02
not the end of the world if only used in a local setting – Joseph Le Brech Jan 3 at 16:06
@BasB I don't know a reason. This is a little bit complicated query (written not by me) – shtkuh Jan 3 at 16:07
feedback

1 Answer

up vote 1 down vote accepted

Use an Order By to specify the sort order

link|improve this answer
Thanks. I just moved Order By line from SQL string to final SELECT and it did the trick. – shtkuh Jan 3 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.