views:

55

answers:

1

What is the full syntax for a stored procedure using SubSonic 3.0? Here is my code which is not working:

DataSet ds = new DataSet();
StoredProcedure sp = test.Usersp_Stock_Search("", 0, "");
sp.ExecuteDataSet();
A: 

ds=sp.ExecuteDataSet()

Rob Conery