和普通采集一样 搜火车头采集图片本地化关键词即可
请问一下:ssycms/mipjz火车头采集时,图片怎么本地化
- 时间:
- 浏览:2939
- 来源:MIP建站系统交流平台
请问一下: ssycms/mipjz 火车头采集时,图片怎么本地化
3个回答


As mentioned in the question, IEnumerable
has a CopyToDataTable
method:
IEnumerable<DataRow> query =
from order in orders.AsEnumerable()where order.Field<DateTime>("OrderDate") > new DateTime(2001, 8, 1)
select order;
// Create a table from the query.
DataTable boundTable = query.CopyToDataTable<DataRow>();
Why won't that work for you?
