I have repositories like this in my application
public class FooRepo
{
public Foo Get(int id)
{
return Foo from Db;
}
}
I'm just wondering if there is possible to do some caching for the methods inside the repository, or probably there is no need because sql-server does it for me, but if needed could someone point/show me some solutions
thnx