I am creating a C# dll, which will be called by RIA services, which in turn will perform some computation. Every time, the computation is called, I need to load a reference table. I am trying to see if it possible cache this table somehow and then use it from there instead of loading from data base every time since this table seldom changes(may be once in a year). Is it possible?
Thanks,
I am creating a C# dll, which will be called by RIA services, which
Share
Use the System.Web.Cache class to keep a single instance of the table for your app domain.