Is there any way to avoid this error that comes prior from someone selects the necessary table row that is going to feed the query used in data source? thanks
Hi Daniel,
You can solve this by setting the IsRequired bool for your GQIStringArgument to false.
e.g.
private readonly GQIStringArgument _myArgument = new GQIStringArgument("My ID") { IsRequired = false };
Do note that you'll have to handle the empty input argument further down in your ad-hoc data source, and make sure you don't depend on it and return an empty set of rows in your GetNextPage method.
Hi Ive,
It worked! Handled the case where the input argument comes empty.
Thanks