我有一个字典列表,我这样创建:
List<Dictionary<String, String>> _list = new List<Dictionary<string, string>>();
var q = from d in db.TT_DELIVERies
where d.DeliveryOrderNumber == donumber
select new { d.DeliveryId };
if (q.Count() > 0)
{
var qd = from d in db.TT_DELIVERY_REQUESTs
where d.DeliveryOrderId == q.ToList()[0].DeliveryId
select new { d.ItemDescription, d.PackageDescription };
Console.Write(qd.Count());
if (qd.Count() > 0)
{
foreach (var r in qd)
{
Dictionary<String, String> temp = new Dictionary<string, string>();
temp.Add("Name", r.ItemDescription);
temp.Add("Desc", r.PackageDescription);
_list.Add(temp);
}
}
}
我尝试用这样的转发器绑定:
rptAddedDocs.DataSource = _list;
rptAddedDocs.DataBind();
这是我的转发器
<asp:Repeater ID="rptAddedDocs" runat="server">
<HeaderTemplate>
<table id="tblListAddedDocs" class="table table-condensed table-hover">
<thead>
<tr>
<th>No</th>
<th>Document Name</th>
<th>Quantity</th>
<th>UOM</th>
<th>Description</th>
<th></th>
</tr>
</thead>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>1</td>
<td><%# Eval("Name")%> </td>
<td>1 </td>
<td>Envlope </td>
<td><%#Eval("Desc")%> </td>
<td></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>
但是我得到这样的错误:
DataBinding: 'System.Collections.Generic.Dictionary`2[[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.String, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]' does not contain a property with the name 'Name'.
请帮我解释如何正确使用带字典列表的转发器?
答案 0 :(得分:1)
在你的.aspx文件中,你应该这样写:
@Configuration
public class WebConfiguration extends WebMvcConfigurerAdapter{
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/").setViewName("index.html");
registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
}
}
答案 1 :(得分:0)
您似乎混淆了Dictionary<TKey, TValue>
的目的。字典是用于存储键/值对的数据结构,其中键是唯一的。 Dictionary.Add()
方法的第一个属性是此键,而不是第二个参数中数据的任意名称。如果您选择保留现有的数据结构,那么您实际上并不需要List<Dictionary<string, string>>
,而是需要简单的Dictionary<string, string>
,而您需要将数据绑定在&#上34;键&#34;和&#34;价值&#34;。
看起来你实际试图做的是创建一个不存在的类型的列表,一个名为{string
的属性的列表1}}和另一个名为Name
的人。最简单的方法是使用这个定义创建自己的类:
Desc
然后将您的public class MyItem
{
public string Name { get; set; }
public string Desc { get; set; }
}
变量声明为_list
的实例,并将List<MyItem>
循环中的人口更改为
foreach