dynamic model = new ExpandoObject();
model.Data = "asdf";
List<dynamic> listOfx = new List<dynamic>();
for (int i = 0; i < 3; i++) {
dynamic x = new ExpandoObject();
x.ID = i;
x.Name = "test" + i.ToString();
listOfx.Add(x);
}
model.listOfx = listOfx;
当我运行它时,我可以在模型中看到数据,但不能看到listOfx。
问题:如何在ExpandoObject中获取列表(或IEnumerable)
解决方案更新:
因为我在本地窗口中看不到lifOfx,所以我觉得它不起作用。在这里(通过y)你可以看到它。 : - )
答案 0 :(得分:4)
上面的代码非常适合设置列表。例如,在代码之后添加此代码将正常工作:
// Access value inside list
Console.WriteLine(model.listOfx[1].Name);
// Iterate through list
foreach (var o in model.listOfx)
{
Console.WriteLine(o.ID);
}
例如,尝试以下(完整功能示例):
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
public static class Test
{
public static void Main()
{
dynamic model = new ExpandoObject();
model.Data = "asdf";
List<dynamic> listOfx = new List<dynamic>();
for (int i = 0; i < 3; i++)
{
dynamic x = new ExpandoObject();
x.ID = i;
x.Name = "test" + i.ToString();
listOfx.Add(x);
}
model.listOfx = listOfx;
// Access value inside list
Console.WriteLine(model.listOfx[1].Name);
// Iterate through list
foreach (var o in model.listOfx)
{
Console.WriteLine(o.ID);
}
Console.ReadKey();
}
}
这使用您的确切示例代码。
答案 1 :(得分:3)
我无法在Mono 2.10上重现类似的问题:
using System.Dynamic;
using System.Collections.Generic;
using System;
public class Program
{
public static void Main(string[] args)
{
dynamic x = new ExpandoObject();
x.Data ="test";
x.Arr = new [] { "test1","test2"};
x.Lst = new List<string> { "aap", "noot", "mies" };
Console.WriteLine(string.Join(", ", x.Arr));
Console.WriteLine(string.Join(", ", x.Lst));
}
}
输出:
/tmp @ dmcs test.cs && mono test.exe
test1, test2
aap, noot, mies
我很快就会在Windows上重新测试。
更新测试了以下内容:
在linux上我只测试了mono本身编译的二进制文件,但我没想到会有任何问题。也许在List&lt;&gt;中存储动态有一些微妙的不同,我现在将测试
答案 2 :(得分:0)
ExpandoObject支持IDictionary。您可以将其转换为
IDictionary myModel =(IDictionary)Model;
那么你可以迭代它。