I want to get, let's say 100 records from an already populated DataTable with let's say 150.000 records. I don't wanna do this with a loop or importing rows. There should be a more efficent and easy way to do this, and i'm not finding it. I tried using
myDataTable.Select("ROWNUM < 100"); // because i'm working with oracle
but RowNum is not a column of the table.
Any hint and help is highly appreciated! Thnx in advance.