M
Mark
Hi -
I'm working in VS2008, C# and am adding a Select Query to the TableAdapter.
It's simple:
Select ID, Name From myTable
Where ID = @id
So in code I excute the Fill method:
this.myTableTableAdapter.FillbyID(this.myDataSet.myTable, 14);
Where/How at runtime can I see the resolved Select statement? Which would
look like:
Select ID, Name From myTable
Where ID = 14
Thank you,
Mark
I'm working in VS2008, C# and am adding a Select Query to the TableAdapter.
It's simple:
Select ID, Name From myTable
Where ID = @id
So in code I excute the Fill method:
this.myTableTableAdapter.FillbyID(this.myDataSet.myTable, 14);
Where/How at runtime can I see the resolved Select statement? Which would
look like:
Select ID, Name From myTable
Where ID = 14
Thank you,
Mark