我正在编写一个从 sql 数据库中提取数据的 wpf 应用程序。
目前我正在使用以下代码在我的窗口中填充几个文本字段。
我想更改它以从实体框架模型(我已经实现)中获取数据,而不是首先从存储过程中填充数据集。
// Initialize a new Data Set object
DataSet dts = new DataSet();
DataTable dt = new DataTable();
// Call the DataManager Class which will collect the data and fill the dataset
DataManager.SelectConsHead(dts);
dt = dts.Tables[0];
// Set the source of the listview
foreach(DataRow drr in dt.Rows)
{
txtAccount.Text = drr["Consignee"].ToString();
txtAccount_Printed.Text = drr["Consignee_Printed"].ToString();
txtPostalAdd1.Text = drr["Postal_Add1"].ToString();
txtPostalAdd2.Text = drr["Postal_Add2"].ToString();
txtPostalAdd3.Text = drr["Postal_Add3"].ToString();
txtPostalAdd4.Text = drr["Postal_Add4"].ToString();
}
}