Is it possible to cast this string as an IEntityQuery: Manager.Employee.Where(e => e.LastName == "Fuller")
EntityManager Manager is already defined.
Why am I need to do this?
I'd like to be able to offer the option to users for searching records, where the object property to search on is user controlled, as is the search filter type. I've quite easily created the string result for their search request, now would simply like to cast that as IEntityQuery to pass into EntityManager.ExecuteQueryASynch.
Any help, advice on a "better way", or pointers to samples much appreciated.