I'm linking a CSV file to an obseravable collection (or at least trying to). My column name is Ticket ID in my CSV file. I'm linking and trying to get data using:
string commandString = "SELECT * FROM " + System.IO.Path.GetFileName(m_history) +@" where ""Ticket ID"" = " + _td.TicketID + " ";
when I change it to string commandString = "SELECT * FROM " + System.IO.Path.GetFileName(m_history) it workes without any problems as far as loading, so it is the selection.
What can I look at to troubleshoot?
Thanks