I'm trying to figure out how to combine the following Expressions:
Expression<Func<TParent, ICollection<TChild>>> childSelector = p => p.Children;
Expression<Func<TChild, bool>> childPredicate = c => c.NameLast.StartsWith("V");
var anyExpression = childSelector <------> .Any(childPredicate);
The "<------>" is the part I don't know what to do with. I'm using LINQKit, I just can't figure out how to combine these expressions.
Can someone give me a hand?