column1
我想在 asp.net DataTable 上获取特定行,并根据列值将其移动到此 DataTable 上的第一行。我的数据表dt1
是通过数据库查询填充的,而要搜索的值是通过来自另一个数据库的另一个查询,所以我当时不知道要搜索的值dt1 select
。
// I use this variable to search into
// DataTable
string valueToSearch = "some value";
所以我需要将值搜索some value
到我的 DataTable 列中column1
。然后将整行移动到第一个位置。
谢谢你。