I want to append Expression. I tried different solutions (available online) but unable to append. Here is my example.
Expression<Func<Consumer, bool>> e1 = c => c.CROID == CROID;
Expression<Func<Consumer, bool>> e2 = c => c.WorkFlow == WorkFlowIndexStr;
I want to add these two expression. Any help??