Hello,
I am currently using VB.Net 2008 express. I use linq to perform
queries on a database, and I'm using the following link's source to
convert those queries into DataTables i can then bind to WinForms'
DataGridViews:
The point is, the properties names extracted by the following lines:
_type = GetType(T)
_pi = _type.GetProper ties()
.... are sorted alphabetically !
I cannot figure out how to keep them "unsorted", ie sorted as they are
in my Select clause.
Can anyone help me ?
Thanks a lot in advance...
I am currently using VB.Net 2008 express. I use linq to perform
queries on a database, and I'm using the following link's source to
convert those queries into DataTables i can then bind to WinForms'
DataGridViews:
The point is, the properties names extracted by the following lines:
_type = GetType(T)
_pi = _type.GetProper ties()
.... are sorted alphabetically !
I cannot figure out how to keep them "unsorted", ie sorted as they are
in my Select clause.
Can anyone help me ?
Thanks a lot in advance...
Comment