Hi,
I am having a few trouble with filtering. I have 2 tables:
Department that contains EmployeeID and Employee that contains EmloyeeID and Name. Both collections are data binded to numerous of views. Now I want to filter EmployeeCollection through Department.
I know that I can do it by using filter and SetOperation.In. Trouble is, I have to call EmployeeCollection.GetMulti(filter) and bind the new collection back to the views, which is not ideal.
Is there a way to keep the old collection and just hide the filtered out values away from the views.
By the way, I am using LLBLGen ver 2.0 trial.