1

我正在尝试对 ReleaseCumulativeFlowData 对象运行查询,如下所示:

((ReleaseObjectID = 12345) AND CardState="Accepted")

但是,运行查询会导致以下错误消息:

OperationResultError
Could not read: could not read all instances of class
com.f4tech.slm.domain.reporting.ReleaseCumulativeFlowDataSet

这是 Rally 中的错误吗?

4

1 回答 1

1

WSAPI 对查询的结构非常挑剔。您必须在链式查询过滤器周围包含括号,因此您需要以下内容:

((ReleaseObjectID = 12345) AND (CardState = "Accepted"))

于 2012-09-20T19:26:35.467 回答