这开始是一个问题,但在我做了一些实验时变成了一个解决方案!所以我想我会和大家分享这个.我的问题是:
如何在不使用MvcContrib.Grid View的情况下使用MvcContrib.Pagination?
我的答案如下......
好的,我了解如何插入任务并将其与用户故事相关联,但现在我如何插入用户故事并将其与工作空间和项目相关联.这是我到目前为止...
DynamicJsonObject toCreate = new DynamicJsonObject();
toCreate["Name"] = "My Test User Story";
toCreate["Description"] = "This is the description of the test User Story";
// these do not exist
//toCreate["Iteration.Name"] = "Iteration Name";
//toCreate["Workspace.ObjectID"] = "123456";
//toCreate["Project.ObjectID"] = "456789";
CreateResult createResult = _restApi.Create("hierarchicalrequirement", toCreate);
bool success = createResult.Success;
Run Code Online (Sandbox Code Playgroud)