如何在 CSOM Project Server 中获取自定义字段任务的值
How to get Value of a custom field task in CSOM Project Server
我正在为项目服务器开发控制台应用程序。 Atm 我可以读取分配给项目的每个任务的名称和工作百分比。每个任务都有一个带有唯一 ID 的自定义字段。 It looks like this.
如何获取唯一标识的值?例如84
这是我列出任务名称和工作百分比的代码:
var projColl = projContext.LoadQuery(projContext.Projects
.Where(p => p.Name == projectName)
.Include(
p => p.Name,
p => p.Tasks,
p => p.Tasks.Include(
t => t.Name,
t => t.PercentComplete,
t => t.CustomFields
)
)
);
projContext.ExecuteQuery();
PublishedProject theProj = projColl.First();
PublishedTaskCollection taskColl = theProj.Tasks;
PublishedTask theTask = taskColl.First();
CustomFieldCollection LCFColl = theTask.CustomFields;
Dictionary<string, object> taskCF_Dict = theTask.FieldValues;
int k = 1; //Task counter.
foreach (PublishedTask t in taskColl)
{
Console.WriteLine("\t{0}. {1, -15} {2,-30}{3}", k++, t.Name, t.PercentComplete);
}
我尝试使用Console.WriteLine("\t{0}. {1, -15} {2,-30}{3}", k++, t.Name, t.PercentComplete,t.CustomFields);
但我只得到
Microsoft.ProjectServer.Client.CustomFieldCollection
如果有帮助的话,我也知道自定义域的内部名称
编辑:我添加了 this exsample 但我只得到第一行的值。
知道如何循环每一行吗?
您只能从第一行获取值,因为 LCFColl
被定义为对象变量 theTask
的自定义字段,而不是您在循环中使用的变量 t
。将 LCFColl
的声明移到任务循环中:
foreach (PublishedTask t in taskColl)
{
CustomFieldCollection LCFColl = t.CustomFields;
foreach (CustomField cf in LCFColl)
{
// do something with the custom fields
}
Console.WriteLine("\t{0}. {1, -15} {2,-30}{3}", k++, t.Name, t.PercentComplete);
}
我正在为项目服务器开发控制台应用程序。 Atm 我可以读取分配给项目的每个任务的名称和工作百分比。每个任务都有一个带有唯一 ID 的自定义字段。 It looks like this.
如何获取唯一标识的值?例如84
这是我列出任务名称和工作百分比的代码:
var projColl = projContext.LoadQuery(projContext.Projects
.Where(p => p.Name == projectName)
.Include(
p => p.Name,
p => p.Tasks,
p => p.Tasks.Include(
t => t.Name,
t => t.PercentComplete,
t => t.CustomFields
)
)
);
projContext.ExecuteQuery();
PublishedProject theProj = projColl.First();
PublishedTaskCollection taskColl = theProj.Tasks;
PublishedTask theTask = taskColl.First();
CustomFieldCollection LCFColl = theTask.CustomFields;
Dictionary<string, object> taskCF_Dict = theTask.FieldValues;
int k = 1; //Task counter.
foreach (PublishedTask t in taskColl)
{
Console.WriteLine("\t{0}. {1, -15} {2,-30}{3}", k++, t.Name, t.PercentComplete);
}
我尝试使用Console.WriteLine("\t{0}. {1, -15} {2,-30}{3}", k++, t.Name, t.PercentComplete,t.CustomFields);
但我只得到
Microsoft.ProjectServer.Client.CustomFieldCollection
如果有帮助的话,我也知道自定义域的内部名称
编辑:我添加了 this exsample 但我只得到第一行的值。 知道如何循环每一行吗?
您只能从第一行获取值,因为 LCFColl
被定义为对象变量 theTask
的自定义字段,而不是您在循环中使用的变量 t
。将 LCFColl
的声明移到任务循环中:
foreach (PublishedTask t in taskColl)
{
CustomFieldCollection LCFColl = t.CustomFields;
foreach (CustomField cf in LCFColl)
{
// do something with the custom fields
}
Console.WriteLine("\t{0}. {1, -15} {2,-30}{3}", k++, t.Name, t.PercentComplete);
}