1

我正在考虑尝试将我们的项目从在线项目加载到 .NET 应用程序中,而我可以加载项目我遇到的一件事是加载我想要的所有列。我知道我可以使用 include 指定要加载的列,但我希望能够使用可以动态生成的列列表。

它是 ETL 程序的一部分,我希望允许用户配置被带入缓存数据库的列列表。以下是我到目前为止所拥有的

    static void Main(string[] args)
    {
        ProjectContext pc = getProjCtxt();

        pc.Load(pc.Projects);
        pc.ExecuteQuery();
        ColumnNames fldList = new ColumnNames();
        var enumerator = pc.Projects.GetEnumerator();

        while (enumerator.MoveNext()) {
            var p2 = enumerator.Current;
            pc.Load(p2);
            pc.ExecuteQuery();
            Console.WriteLine(p2.FinishDate);
        }

        foreach (PublishedProject p in pc.Projects)
        {
            var pubProj = p.IncludeCustomFields;

            pc.Load(pubProj);

            pc.ExecuteQuery();

            //Dictionary<string, object> projDict = pubProj.FieldValues;
            var type = p.GetType();

            foreach(ColumnNames.colInfo ci in fldList.impFields)
            {
                if (type.GetProperty(ci.FieldName) != null)
                {
                    Console.WriteLine(p.FinishDate);
                    Console.WriteLine(type.GetProperty(ci.FieldName).GetValue(p, null));
                }

            }
         }
     }

我在 FinishDate 上收到一个错误,因为它没有很好地初始化如何初始化任务/项目的所有属性,因此如果程序不提前知道它正在寻找哪些列,我可以使用它们。

有没有办法建立一个字符串并将其传递给在线项目以告诉它要初始化哪些属性。?

4

1 回答 1

3

所以我最终找到了一个答案。 https://sharepoint.stackexchange.com/questions/89634/syntax-for-include-fields-dynamically-in-csom-query

设法还简化了vode并对其进行了清理。以及确保我只在显式属性列表中包含非自定义字段,因为 IncludeCustomFields 选项会降低所有自定义字段。

static void Main(string[] args)
    {
        ProjectContext pc = getProjCtxt();
        ColumnNames fldList = new ColumnNames();

        var q = from ColumnNames.colInfo fld in fldList.impFields
                where fld.CustomField == false
                select fld;

        Console.WriteLine(q.Count());

        foreach(ColumnNames.colInfo dynField in q){
            pc.Load(pc.Projects, p => p.Include(pj => pj[dynField.FieldName]));
        }
        pc.Load(pc.Projects, p => p.Include(pj => pj.IncludeCustomFields));
        pc.ExecuteQuery();
    }
于 2015-10-23T18:13:11.473 回答