Usage of method:
DataContext.ExecuteQuery<TResult>(String, Object[]);
The following generates an InvalidOperationException with message:
{"Could not format node 'Value' for execution as SQL."}
int[] ids = new int[] {1, 2, 3};
context.ExecuteQuery<SourceTarget>(select c.* from Customer c where c.customer_id in {0}, ids);
Your help will be really appreciated.