I am trying to implement caching in ASP.Net core app. Currently What I have implemented is In Memory caching using IMemoryCache
but what I want is cache should get invalidated if corresponding record in SQL server 2016 gets changed. One way I found it SQLCacheDependency
but it is not a part of .Net Core as per this link
Any thoughts on this ?