我有以下示例,其中SourceData
该类将表示由 Sql 查询产生的 DataView:
class MainClass
{
private static SourceData Source;
private static DataView View;
private static DataView Destination;
public static void Main (string[] args)
{
Source = new SourceData();
View = new DataView(Source.Table);
Destination = new DataView();
Source.AddRowData("Table1", 100);
Source.AddRowData("Table2", 1500);
Source.AddRowData("Table3", 1300324);
Source.AddRowData("Table4", 1122494);
Source.AddRowData("Table5", 132545);
Console.WriteLine(String.Format("Data View Records: {0}", View.Count));
foreach(DataRowView drvRow in View)
{
Console.WriteLine(String.Format("Source {0} has {1} records.", drvRow["table"], drvRow["records"]));
DataRowView newRow = Destination.AddNew();
newRow["table"] = drvRow["table"];
newRow["records"] = drvRow["records"];
}
Console.WriteLine();
Console.WriteLine(String.Format("Destination View Records: {0}", Destination.Count));
foreach(DataRowView drvRow in Destination)
{
Console.WriteLine(String.Format("Destination {0} has {1} records.", drvRow["table"], drvRow["records"]));
}
}
}
class SourceData
{
public DataTable Table
{
get{return dataTable;}
}
private DataTable dataTable;
public SourceData()
{
dataTable = new DataTable("TestTable");
dataTable.Columns.Add("table", typeof(string));
dataTable.Columns.Add("records", typeof(int));
}
public void AddRowData(string tableName, int tableRows)
{
dataTable.Rows.Add(tableName, tableRows);
}
}
我的输出是:
数据查看记录:5
源表 1 有 100 条记录。未处理的异常:System.NullReferenceException:对象引用未设置到 /usr/src/packages/BUILD/mono-2.4.2.3 /mcs/class/ 中 System.Data.DataView.AddNew () [0x0003e] 处的对象实例System.Data/System.Data/DataView.cs:344 在 /home/david/Projects/DataViewTest/SourceData.cs:29 中的 DataViewTest.MainClass.Main (System.String[] args) [0x000e8]
我在这里做了一些阅读:DataView:AddNew Method...
...看来我这样做是正确的。为什么我没有设置对象引用?