0
votes
1answer
105 views
Why does stored procedure invalidate SQL Cache Dependency?
After many hours, I finally realize that I am working correctly with the Cache object in my ASP.NET application but my stored procedures stops it from working correctly.
This stored procedure works …
0
votes
1answer
104 views
Cache and SqlCacheDependency (ASP.NET MVC)
We need to return subset of records and for that we use the following command:
using (SqlCommand command = new SqlCommand(
"SELECT ID, Name, Flag, IsDefault FROM (SELECT …
2
votes
1answer
100 views
ASP.NET set cache dependency with a SqlCommand
Is this an effective way to set the cache item dependent on the query?
HttpRuntime.Cache.Insert(
"ListLanguages",
list,
new …
0
votes
1answer
99 views
Can I use SQL cache dependency with SubSonic?
I want to use SQL cache dependency with SubSonic. How can I do this?
2
votes
2answers
179 views
Problem with ASP.NET Caching.
Hi folks,
I've got two items in my cache
Key: Cat
Key: Animal_Vacinations
Now, Animal_Vacinations has a key-based cache dependency on Cat. So, if anything changes for the cache item Cat, then the …
