I have a master detail grid. The master grid shows a list of Employees. I would like the detail grid to only show the details for that employee. I applied the query below to the detail grid:
this.DetailGridQuery = new Query().Where(nameof(EmployeeTraining.EmployeeId), "equal", SelectedEmployee.Id);
It throws the following exception:
Thank you for your response. I've reviewed both examples, but they do not address my issue. Please revisit my original request - it's either a bug or an implementation error on my part.
The Query is still throwing the error. Attached is a fully functioning example and a video.