gpt4 book ai didi

c# - 从数据表插入数据表

转载 作者:太空宇宙 更新时间:2023-11-03 17:27:43 24 4
gpt4 key购买 nike

我想在某些条件下将数据从一个 DataTable 插入到另一个 DataTable。我发现此链接很有用:http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/7a5d0f88-3e71-435a-ae3c-ff01d1ca22a2/但我不能把.ToList()对于我的查询。我收到以下错误:

'System.Data.EnumerableRowCollection<System.Data.DataRow>' does not contain a definition for 'ToList' and no extension method 'ToList' accepting a first argument of type 'System.Data.EnumerableRowCollection<System.Data.DataRow>' could be found (are you missing a using directive or an assembly reference?)

有人可以帮我解决这个问题吗?

PS:我的查询:

(from crow in dtConfiguration.AsEnumerable()
where crow.Field<string>("FieldType") == "FL"
& crow.Field<string>("FieldName") != "DATEADDED"
& crow.Field<string>("FieldName") != "DATEMODIFIED"
select crow).ToList()

最佳答案

将以下语句添加到您的代码中:

using System.Linq;

关于c# - 从数据表插入数据表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5754469/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com