当我必须将字符串字段转换为 Int 时,尝试创建 Criteria.Parse 运算符。操作失败如下:
Message=Parser error at line 0, character 15: 语法错误;("Convert.ToInt16{FAILED HERE}(awayML)>130")
这是我的代码:
XPCollection collection = new XPCollection(session1, typeof(TodaysGame), CriteriaOperator.Parse("Convert.ToInt16(awayML)>130"));
int ct = collection.Count;
如何使用 Convert.ToInt16 函数形成标准?