vote up 1 vote down star

I am confused on DataTable.DefaultView.Sort. Here is the segment of the code I want to use it in.

actionLogDT.DefaultView.Sort = "StartDate";

foreach (CustomerService.ActionLogStartEndRow logRow in actionLogDT)
{
  // code here
}

The samples I have seen don't use the foreach loop and thus is confusing me on how to process this. It isn't sorting as I thought it should be.

I see that .DefaultView returns a view, and .Table gives a compile error.

flag

what is your question/confusion? what compilation error are you getting? – shahkalpesh Jul 30 at 19:26
It isn't sorting. – Mike Wills Jul 30 at 19:28

3 Answers

vote up 2 vote down

Sorting the view won't change the sort order of the data in the table, just the order in the view. It should work if you do your foreach on the view instead, casting the row from the DataRowView back to your strongly typed row.

foreach (DataRowView logRowView in actionLogDT.DefaultView)
{
    CustomerService.ActionLogStartEndRow logRow = logRowView.Row as CustomerService.ActionLogStartEndRow;
    // code here
}
link|flag
Doing that gives me an "Unable to cast object of type 'System.Data.DataRowView' to type 'ActionLogStartEndRow'." error. – Mike Wills Jul 30 at 19:30
Does ActionLogStartEndRow derive from DataRow? – Jeromy Irvine Jul 30 at 19:31
@Jeromy - I am sure it does. I am using the .XSD data layer to accomplish all of this. – Mike Wills Jul 30 at 19:33
@Mike - In that case, my updated answer should work. – Jeromy Irvine Jul 30 at 19:36
Basically the same casting error. Unable to cast object of type 'System.Data.DataRow' to type 'ActionLogStartEndRow'. – Mike Wills Jul 30 at 19:46
show 1 more comment
vote up 1 vote down check

I had to take a slightly different approach. This post was the closest I could find to get my code to work. Here is the working result:

actionLogDT.DefaultView.Sort = "StartDate";
DataView dv = actionLogDT.DefaultView;

foreach (DataRowView logRow in dv) { . . . }

From there I just have to cast the value back into it's proper type.

(string)logRow["Status"].ToString()
link|flag
vote up 0 vote down
foreach (var logRow in actionLogDT.DefaultView.ToDataTable()) { ... }
link|flag

Your Answer

Get an OpenID
or

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