Hello and Thank you for helping.
I'm using the following code in my Data set Data Table Query (by Wizard) for sorting by random(ID Column).
SELECT ID, Q, A_1, A_2, A_3, A_4, Correct
FROM Quiz
ORDER BY RND(Quiz.ID)
When I test this code in Query-builder(in C#) Work Correctly but When I'm run my project this code not work and not load by random. my using code for load:
this.quizTableAdapter.Fill(this.dBDataSet.Quiz);
Please help Me.