0
在實體框架(任何版本)中是否存在與此Rails輝煌的用於清除數據庫查詢緩存的等價物?我一直有這個問題,似乎無法找到一個簡單的方法來解決這個問題:實體框架緩存刷新
所有的關聯方法是圍繞高速緩存,這使可用於進一步操作的最近查詢的結果建立。緩存甚至可以在不同的方法間共享......
但是如果你想重新加載緩存呢,因爲數據可能已經被應用程序的其他部分改變了?只是通過真該協會電話:
customer.orders # retrieves orders from the database
customer.orders.size # uses the cached copy of orders
customer.orders(true).empty? # discards the cached copy of orders
# and goes back to the database