Stored procedure (query ) when run in Management Studio takes 4-8 seconds. However, when launched inside WCF service via Entity Framework it may take more than minute. WCF runs in VS 2010 in debugging mode with ASP.Net Development Web Server.
The actual call
requests = transactionEntities.spRequestsForRescreening(cutoffDate).ToArray();
Since all SQL code encapsulated in a stored procedure don't know what I could look at to understand the reason causing this slowness.