我有一个令人困惑的问题。
最近,我收到8个月前在2008年全球S网络开发商上写的一些密码。 现在,我已迁到2010年,因此我对该项目进行了升级,但情况并非如此。 如今,由于以下守则,它赢得了建树:
IMSDataSet.vwPartDataTable table = new IMSDataSet.vwPartDataTable();
da.Fill(table);
//Convert to Parts
return table.Select<IMSDataSet.vwPartRow, Part>((row) => { return new Part(row); }).ToArray();
Where vwPartDataTable is created using the Data Set designer in Visual Studio. Now having a look around on SO it appears that this is incorrect code, and I need a AsEnumerable() in there. However the thing is. I deployed this code. There s load of these lines, I used them everywhere, so it must have worked.
该项目将所有物品升级到4.0英元,但将其退回到3.5无效果。
任何人都能够弄清。 我倾向于保留该守则,因为这正是客户所拥有的。
感谢。