I have two .NET objects, Employee and Department. In .xbre file I need to setup condition as below,
If Employee.EmpID is X and Department.DeptID is Y then do something. So In a given rule, I need to access two objects (employee and department) and validate the condition.
If I use <ObjectLookup>
then I understand I can pass one object and field (Employee.EmployeeID
or Department.DeptID
), can we access both of them together?