【发布时间】:2018-09-21 22:57:08
【问题描述】:
我们正在尝试在 BQL 上使用 IN 运算符来选择多个库存,但它不起作用。
例如,
int[] items = new int[] { 154, 184 };
foreach (SOLine item in PXSelect<SOLine,Where<SOLine.inventoryID,In<Required<SOLine.inventoryID>>>>.Select(this, items))
{
}
我还参考了下面的博客,该博客说明了将 IN 运算符用于字符串: https://asiablog.acumatica.com/2017/11/sql-in-operator-in-bql.html。我们正在以类似的方式尝试整数类型。我不确定我们缺少什么。如果有人可以帮助识别,那就太好了。
【问题讨论】:
标签: operator-keyword acumatica