I sort the records of the datatable datewise with the column TradingDate which is type of datetime.

TableWithOnlyFixedColumns.DefaultView.Sort = "TradingDate asc";

Now I want to store these sorted records into csv file but stored records are not sorted by date.

 TableWithOnlyFixedColumns.DefaultView.Sort = "TradingDate asc";
  DataTable newTable = TableWithOnlyFixedColumns.Clone();
  newTable.DefaultView.Sort = TableWithOnlyFixedColumns.DefaultView.Sort;
  foreach (DataRow oldRow in TableWithOnlyFixedColumns.Rows)
  {
     newTable.ImportRow(oldRow);
  }
  // we'll use these to check for rows with nulls
  var columns = newTable.DefaultView.Table.Columns.Cast<DataColumn>();
  using (var writer = new StreamWriter(@"C:\Documents and Settings\Administrator\Desktop\New.csv"))
  {
     for (int i = 0; i < newTable.DefaultView.Table.Rows.Count; i++)
     {
        DataRow row = newTable.DefaultView.Table.Rows[i];
        // check for any null cells
        if (columns.Any(column => row.IsNull(column)))
        continue;
       string[] textCells = row.ItemArray
      .Select(cell => cell.ToString()) // may need to pick a text qualifier here
      .ToArray();
      // check for non-null but EMPTY cells
      if (textCells.Any(text => string.IsNullOrEmpty(text)))
      continue;
      writer.WriteLine(string.Join(",", textCells));
    }
 }

So how to store sorted records in csv file ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

This line of code;

DataRow row = newTable.DefaultView.Table.Rows[i]; 

is referencing the unsorted DataTable behind the DataView. You need to use a DataRowView instead of a DataRow and access the sorted rows from the DataView;

DataRowView row = newTable.DefaultView[i]; 
link|improve this answer
@Matt,then I can not get the method isNull() for the row which is below that line of code. – Harikrishna May 5 '10 at 9:51
you can access the isNull() method through the Row property, row.Row.IsNull, might want to change your variable name :-) – Matt May 5 '10 at 10:01
@Matt,Thank You it works.But I don't understand the concept of that when we sort the records of the datatable it does not sorted physically and according to we have sorted the records the datatable is not changed ? – Harikrishna May 5 '10 at 10:05
A DataView is a similar concept to a view in SQL, it just provides another way of viewing the raw data. Changing the physical order of the data, in either a database or in memory datatable is a fairly expensive process. – Matt May 5 '10 at 10:12
@Matt,Then when we sort the datatable records using defaultView,it just virtually sorted records ? How can we sort the datatable records physically ? – Harikrishna May 5 '10 at 10:14
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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