There is an enterprise project, which all the business implemented in databases and in the stored procedures, and web API is just like a light wrapper which get the request and deliver it to proper SQL server sp and return the returned response from SQL server to client.
(except some discussions, and pros and cons of this kind of implementation which had discussed before here and here ), what is the best way of calling sp for a project with hundreds of request per second : with entity framework or with ado.net or there is not a huge difference between them?