A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
Hi @Bradley Rogers ,
You get the best performance by supplying sorting criteria in the LINQ to DataSet query that the DataView is created from and not modifying the sorting information, later.
DataTable orders = dataSet.Tables["SalesOrderHeader"];
EnumerableRowCollection<DataRow> query = from ...orderby ....select ...;
DataView view = query.AsDataView();
bindingSource1.DataSource = view;
Best regards,
Yijing Sun
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.