Hello I am using a search box to search/load a grid using the IQuery method. I want to load a table using a foreign key and I want to to be able to search through the table. I tried the Data method but it is returning data I do not need. I am attempting to do the following but I am not getting any results back.
Any ideas would be great.
Query query = new Query()
{
Filter = $@"Session_Schedule_FK || i => i.Employee_Name.ToLower().Contains(@0)"
FilterParameters = new object[] { args.Session_Schedule_PK, search}
};