Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get top 10 rows from a DataTable in the same order as the previous DataTable.

With the code I have below, I can have it sorted in dt1 and import only 10 rows into dt2 but it's not importing the rows in the sorted order. I need it to keep the sorted order. Your help will be much appreciated.

    DataTable dt2 = dt1.Clone(); 
    dt1.DefaultView.Sort = "x DESC"; 
    for (int i = 0; i < 10; i++)
    {
        dt2 .ImportRow(dt1.Rows[i]);
    }
share|improve this question

3 Answers

up vote 2 down vote accepted

Just use a query and sorting like this:

DataTable dt2 = dt.Clone();

//get only the rows you want
DataRow[] results = dt.Select("", "x DESC");

//populate new destination table
for(var i=0; i < 10; i++)        
    dt2.ImportRow(results[i]);

Hope it helps!

share|improve this answer
It is throwing this error Syntax error: Missing operand after '10' operator. – Seesharp Mar 17 '12 at 19:23
Sorry, I used the incorrect code. I've edited it, see if it works for you now. – Reinaldo Mar 17 '12 at 19:27
Thanks for editing it, Now it's throwing this Syntax error: Missing operand after 'DESC' operator. – Seesharp Mar 17 '12 at 19:34
I was editing and it saved before I had finished. Oops.. just fixed it (again) just need to do the select like this: DataRow[] results = dt.Select("", "x DESC"); – Reinaldo Mar 17 '12 at 19:37
That works great. Thank you... for taking your time. – Seesharp Mar 17 '12 at 19:45
show 2 more comments

You're sorting the view of the data, not the data itself; thus, when you access the rows, it is the unsorted data you are once again accessing.

You need to get a sorted set of rows from dt1 using Select(), and then take the rows from that.

share|improve this answer
Yes I was trying to select but I was getting the syntax wrong dt1.Select("x Desc");. What is the correct way to do it? – Seesharp Mar 17 '12 at 19:20
1  
(See Reinaldo's answer.) – JTeagle Mar 17 '12 at 19:22
void GetSortedTable(int count, string order = "DESC")
{
    // Get our data table sorted by 'x' in a specific 'order'.
    DataRow[] results = dt.Select("", "x " + order);

    // Create a new empty data table.
    DataTable dt2 = dt.Clone();

    // Import the resulting 'count' rows into it.
    for (int i = 0; i < count; ++i)
        dt2.ImportRow(results[i]);

    return dt2;
}

Related: MSDN - DataTable.Select

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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