Hi,
When using the following Like pattern I get an error.
The error Invalid LIKE pattern %GRP:**All Admins**,%
If I remove the : and , from the string then no error is produced but of course no results are returned as : and , are in the column data in the DB. If I do this SQL syntax against the DB then it returns fine
SELECT * FROM mytable where Column1 like '%GRP:**All Admins**,%';
Is there anyway to format this so your like filter will accept it?
Thanks
When using the following Like pattern I get an error.
this.Filters.Add("=Fields.column1", Telerik.Reporting.Data.FilterOperator.Like, "%GRP:**All Admins**,%");
The error Invalid LIKE pattern %GRP:**All Admins**,%
If I remove the : and , from the string then no error is produced but of course no results are returned as : and , are in the column data in the DB. If I do this SQL syntax against the DB then it returns fine
SELECT * FROM mytable where Column1 like '%GRP:**All Admins**,%';
Is there anyway to format this so your like filter will accept it?
Thanks