Caching data in asp.net is very simple. So I just want to know how I can cache data in a win application.
Suppose that I want to receive and cache data from the employee table, and when sometime some records are inserted or updated in the employee table, then an event will fire in my form, and from there I will again load this data from the employee table and cache It. It is very easy to implement in asp.net applications, but how to implement this concept in a win application. I do not want to use a timer. please help me with the concept?
source
share