I have a table with columns that have colons within. I am trying to figure out a way to ignore the colon as a parameter when trying to query the DB. I have tried to use SetParameter and String.Format but it does not work. I have also tried to escape the colon with a :: and \ but no luck. See a sample below
var result = session.CreateSQLQuery("Select id, [Results: A] as ResultsA, [Results: B] as ResultsB FROM Table").SetResultTransformer(Transformers.Alias.ToBean<TableObject>()).List<TableObject>();