我有一个 Ado.Net 数据集,其中包含三个数据表,假设数据集名称 customer 和表是 accounts, purchase 和 profile 。我喜欢使用softartisans ExcelWriter将它们导出到使用模板的工作表
例子
DataSet myDataSet = new DataSet();
myDataSet.Tables.Add("Customer");
myDataSet.Tables.Add("Accounts");
myDataSet.Tables.Add("Purchases");
xlt.BindData(myDataSet,null , xlt.CreateDataBindingProperties());
我确实喜欢将这些表格导出到单独的 Excel 工作表中。