Caching stored procedure results in Linq'u
- by itdebeloper
In our web application we have a lots of stored procedures look like this one:
getSomeData(/* 7 diffrent params */)
This stored procedure don't make any updates. We are using Linq'u.
I know that the date are changing no often than once per day
so the results for the same sets of parameters values will be the same.
Does Linqu have cache…