|
As the title, I built a data set and built a tableadapter in it. The statement assumes: select a, b, c, d, e from table1.
In the form, I pulled a datagridview and bound the tableadapter as follows
dsBillTableAdapters.ICStockBillTableAdapter da = new dsBillTableAdapters.ICStockBillTableAdapter ();
this.iCStockBillTableAdapter.Fill (this.dsBill.ICStockBill);
You can get the results found by selecting a, b, c, d, e from table1. But now I want to add where a = 1 to the end of the statement when I call it. What should I do? |
|