我有一个使用断开连接的类创建的内存数据库。我已经填充了数据表,现在我想查询以从数据表中选择特定的行。最简单的方法是什么?
问问题
966 次
1 回答
0
如果您使用 C#,DataTable
您可以查询它,例如:
private void GetRowsByFilter()
{
DataTable table = DataSet1.Tables["Orders"];
// Presuming the DataTable has a column named Date.
string expression;
expression = "Date > #1/1/00#";
DataRow[] foundRows;
// Use the Select method to find all rows matching the filter.
foundRows = table.Select(expression);
// Print column 0 of each returned row.
for(int i = 0; i < foundRows.Length; i ++)
{
Console.WriteLine(foundRows[i][0]);
}
}
示例来自:http: //msdn.microsoft.com/en-GB/library/det4aw50.aspx
您还可以使用 LINQ 通过以下方式查询集合DataTable.AsEnumarable
于 2012-06-14T06:56:55.153 回答