Hi, I have a .net datatable...from which I am filtering rows using datatable' select function
Assume the datatable as below
Id | Name | Description |
1 | Anish| "sachin's centuary" |
If I search my datatable as...
datatable.select("Description = 'sachin's centuary'")...it is not returning any rows because of the "single quote" in description.
I tried to replace the single quote with double single quote as in sql...but no luck.
Plz help ...