I manage to construct something like this:
Dim filterPredicate = New FieldCompareSetPredicate(PrGlAccountsDistributionFields.CategoryId, Nothing, CoPayCategoryFields.CategoryId, Nothing, SetOperator.In, (CoPayCategoryFields.PayrollType = "EA"))
but i need to add an "AND COMPANY_ID=1" to look like this:
Dim filterPredicate = New FieldCompareSetPredicate(PrGlAccountsDistributionFields.CategoryId, Nothing, CoPayCategoryFields.CategoryId, Nothing, SetOperator.In, (CoPayCategoryFields.PayrollType = "EA" and CoPayCategoryFields.CompanyId=1))
how i can achive that?