Page 1 of 1

Keep getting error when trying to filter == not working

Posted: Tue Jul 05, 2022 5:43 am
by luke
please could you provide me with some guidance on this.

Re: Keep getting error when trying to filter == not working

Posted: Tue Jul 05, 2022 7:44 am
by Lech Kulikowski
Hello,

Please check:
((...ToString() == (pVar1.ToString() + ...ToString())) == pVar2.ToString())

Thank you.

Re: Keep getting error when trying to filter == not working

Posted: Tue Jul 05, 2022 9:19 am
by luke
((PayRunContractorContractors.PAYRUNCONTRACTORCONTRACTORID.ToString() == (pVar1.ToString() + PayRunContractorContractors.CandidateID.ToString())) == pVar2.ToString())

Same Error

Re: Keep getting error when trying to filter == not working

Posted: Tue Jul 05, 2022 12:44 pm
by Kirill Klimenkov
Hello.

Please, try to use the following expression:

Code: Select all

(PayRunContractorContractors.PAYRUNCONTRACTORCONTRACTORID.ToString() == (pVar1.ToString() + PayRunContractorContractors.CandidateID.ToString())).ToString() == pVar2.ToString()
Thank you.