I have a datatable select like:
productData.Select("Name = 'AAA BBB # CCC'");
I know the entry is there, it just doesn't work because of the # character. I have tried escaping with [] like:
productData.Select("Name = 'AAA BBB [#] CCC'");
but it still doesn't work. I know for single quotes I double them so ' becomes ''. But what other characters do I need to be concerned with and how to get this case to work.