将匿名对象添加到匿名列表

时间:2011-03-09 01:32:13

标签: c# list anonymous-types

我有一个存储在b中的匿名类型列表(来自列表),我想在列表中添加一个新对象。当我尝试将新的匿名对象添加到此列表时,我收到此错误:

'System.Collections.Generic.List.Add(AnonymousType#1)'的最佳重载方法匹配具有一些无效参数。 我也得到这个错误:参数1:无法从'AnonymousType#2'转换为'AnonymousType#1'

 var b = user.Orders.Select(i => new { id = i.BillingId , text = i.Billing.ToString() }).ToList();
 b.Add(new { id = 0 , text = "New Billing Address" });

提前致谢

1 个答案:

答案 0 :(得分:7)

BillingId是什么类型的?您可能需要在数字文字或演员表上添加后缀,或者如果它可以为空,则获取Value