R
rawCoder
Hi All,
I have a column in my datatable that is named like a number i.e. 45
I know its not good to have a column named as number, but...
Anyways, so when i set the DataView's RowFilter to some thing like
"45='blah'"
System.Data.EvaluateException is raised with message "Cannot perform '='
operation on System.Int32 and System.String.".
Why is it taking a ColumnName as integer or am i missing something.
Lets say DataColumn was initialised somehting like this new DataColumn("45")
Anybody got any idea. I have tried "[45]='sadf'" and i currently cant change
the column name to some proper string.
<sorry for cross post>
Thanx in advance
rawCoder
I have a column in my datatable that is named like a number i.e. 45
I know its not good to have a column named as number, but...
Anyways, so when i set the DataView's RowFilter to some thing like
"45='blah'"
System.Data.EvaluateException is raised with message "Cannot perform '='
operation on System.Int32 and System.String.".
Why is it taking a ColumnName as integer or am i missing something.
Lets say DataColumn was initialised somehting like this new DataColumn("45")
Anybody got any idea. I have tried "[45]='sadf'" and i currently cant change
the column name to some proper string.
<sorry for cross post>
Thanx in advance
rawCoder