WorkItemStore.Query から返されるワークアイテムの量を制限する方法はありますか?
workItemStore.Query("Select Title from Issue where (State = 'Active') order by Title") <-- かなりの数の結果が返されます。私がやっていることについては、最初の 5 つの結果だけが必要です。
「Select TOP 5 ID, Title from Issue where (State = 'Active') order by Title」のようなクエリを使用すると、「Expecting end of string. The error is due by «5».」 エラーが発生します。