Stored Procedure on a C# datatable NOT a sql table
Hi,
I have a datatable:
DataTable dt = new DataTable();
dt = report.BodyTable;
Now I want to run a stored procedure on dt (i.e. the in-memory dt object NOT a Sql Server table) and return the results to another datatable. I am using SQL SERVER 2005.
Is this possible?