I basically want to create a scenario where a user can pick a field from a drop down list and enter a corresponding value. I then want to use those values in a predicate to filter my typedview.
I got the field index by:
EntityFieldIndex fieldEnum = (EntityFieldIndex) System.Enum.Parse(typeof(EntityFieldIndex), fieldName, true);
Now i am not sure how to deal with the value. It could potentially be string, int, datetime, etc...
Is there any other way to handle this type of situation in llblgen? I basically need to create an interface that allows users to select a field, a condition, and a value to filter a result.
Thanks
Matt