I am creating a console application using Enterprise Library my code is something like this
DataSet ds = db.ExecuteDataSet(command);
this actually calling a SP which take 10-15 minutes to complete , so my come throws a time-out error.
Any idea how to overcome this.