一、数据记录
EnumerableRowCollection<DataRow> query
= from order in _table.AsEnumerable()
where order.Field<Int32>("key") > 2 && order.Field<Int32>("key") < 4
select order.Field<Int32>("key")=1000, order.Field<string>("name");
我可以这样说。
审判
select new {key= 1000,name= order.Field<string>("name") };
i got
Cannot implicitly convert type
System.Data.EnumerableRowCollection<AnonymousType#1>
to System.Data.EnumerableRowCollection<System.Data.DataRow>
如何形成权利问题? 我的任务是用1 000个钥匙取代钥匙,并按现在的名称删除。