Hi All,
I need one help. please see the below code:
FilterExpression filterLeads = new FilterExpression();
filterLeads.FilterOperator = LogicalOperator.And;
//filter.AddCondition("regardingobjectid", ConditionOperator.Equal, entityRecordGuid);
filterLeads.AddCondition("websiteurl", ConditionOperator.Equal, strWebsiteURL);
filterLeads.AddCondition("leadid", ConditionOperator.Equal, "lead.new_PrimaryLead");
Here, I wrote first condition to fetch only those records contains the said URL.
But in second condition, i need to fetch those records which satisfies leadid = new_PrimaryLead that is not any value filter but the inner join kind of filter i need.
Does it possible?
Please help, thank you in Advace.
Dhaval Panchal