我可以问一下如何将数据库数据链接到PDF吗?就像我在我的数据库中有自己的订单号,我想将orderNo链接到我的数据库中的订单号。同样适用于产品和价格。谢谢。
string companyName = "Testing1";
int orderNo = 1234;
DataTable dt = new DataTable();
dt.Columns.AddRange(new DataColumn[5]
{
new DataColumn("ProductId", typeof(string)),
new DataColumn("Product", typeof(string)),
new DataColumn("Price", typeof(int)),
new DataColumn("Quantity", typeof(int)),
new DataColumn("Total", typeof(int))
});