关于使用匿名列表类型的问题
private List<T> GetFieldList()
{
var Fields = new { DisplayName = "MCP", FieldName = "t.MCP", FieldType = 1 };
var FieldList = (new[] { Fields }).ToList();
return FieldList;
}
我应该能够做这样的事情吗?
private List<T> GetFieldList()
{
var Fields = new { DisplayName = "MCP", FieldName = "t.MCP", FieldType = 1 };
var FieldList = (new[] { Fields }).ToList();
return FieldList;
}
Should I be able to do something like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解您的标签“asp.net”,此结构将用作数据绑定的一部分。
只需使用非通用:
由所有数据绑定控件处理会很好。
If I understand correctly your tag "asp.net" this construction will be used as part of data binding.
Just use non generic :
It would be nice handled by all data-bound controls.
我刚刚意识到我不需要使用匿名列表,因为我知道我期望的数据的结构,所以我只需为其创建一个小类。
I just realized I don't need to use an anonymous list as I know the structure of the data I'm expecting, so I'll just create a small class for it.