I am creating my own datatable to feed a DataGridView but the initial sorting(if there is one) is not the one that I need. I am re-sorting it afterwards but it takes some time. Is it possible to somehow provide an already sorted stuff prior to the visual fill?

This is how I am doing it now:
VB Code:
  1. GridFiles.DataSource = workTable
  2. GridFiles.Sort(GridFiles.Columns("Website"), System.ComponentModel.ListSortDirection.Ascending)