R
Roy
I have a DataTable with a column named "MyColumn (Something)". When I use the
following code to select the column with a value of "abc"
string filter = "MyColumn (Something)" + "=abc";
MyDataTable.Select(filter)
It shows an error:
"The expression contains undefined function call MyColumn().".
How do I let the Select() function know the "MyColumn (Something)" is the
title of the column, not a function?
following code to select the column with a value of "abc"
string filter = "MyColumn (Something)" + "=abc";
MyDataTable.Select(filter)
It shows an error:
"The expression contains undefined function call MyColumn().".
How do I let the Select() function know the "MyColumn (Something)" is the
title of the column, not a function?