Вот мой код:
TransactionCollection transactions = new TransactionCollection();
transactions.Where("next_action", "RESEND");
transactions.Where("job_id", CurrentJob.Id);
transactions.Load();
Я действительно хочу сказать, что next_action это RESEND или next_action это TARGET. Спасибо.
В основном я хочу выбрать состояние, например:
select * from transactions where job_id = 1 and (next_action = 'RESEND' OR next_action = 'TARGET');
или
select * from transactions where job_id = 1 and next_action IN ('RESEND', 'TARGET');