I have a comma delimited string parameter that is parsed into a c# datasource method when a Telerik report gets rendered. When I pass the string as it is into the datasource, using Parameters.personId.Value it fails and I get an error. When I use the Join(",", Parameters.personId.Value) function, it only works if the string has a single value and it's not comma delimited. The moment I append another value to the string, it sends the parameter as an empty string to the datasource.
This is how my data looks like:
Telerik UI parameter:
C# DataSource definition:
Sample Parameter Value:
PersonIds: "965985,663958"
Thanks.