mdegroot71
mdegroot71
Thank you for the swift response. Wow! Thank you for exposing the expression. One problem I have, I think, is how I've crafted my rule. Here's an example of a...
Thank you for your response! When I execute the rule, I execute it passing in the parent object, Selection. A Selection object has a collection of Program objects. Each Program...
Thank you for your help! I found the answer. I took my Selection object and put it in a list. I then executed a .Where() on that list which then...
Sorry, I spoke too soon. Here's the code I wrote... ` var expression = MRE.ToExpression(rule.RuleObject); List selections = new List { selection }; var selectionProgramsMatched = selections.AsQueryable().Where(expression).ToList(); ` What happens...