D
Dirk
Hi,
I made heavy use of unique identifier columns. I load a bunch of data in
a dataset and want to make some queries on that data (off line). For
that, I often need to filter in the uniqueidentifier columns.
What is the appropriate way to do this, so that I get the best
performance? Do I need have to use the Convert syntax?
DataRow[] rows = m_dt.Select("Convert(myGuidCol, 'System.String') = '" +
myGuid.ToString() + "'");
Or is there a better way?
best regards
Dirk
I made heavy use of unique identifier columns. I load a bunch of data in
a dataset and want to make some queries on that data (off line). For
that, I often need to filter in the uniqueidentifier columns.
What is the appropriate way to do this, so that I get the best
performance? Do I need have to use the Convert syntax?
DataRow[] rows = m_dt.Select("Convert(myGuidCol, 'System.String') = '" +
myGuid.ToString() + "'");
Or is there a better way?
best regards
Dirk