You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes, we may want to query large data. We know that this data is for special purposes like reporting. So it does not need any internal caching. Internal caching can be very expensive when dealing with a large data set.
adding
public class QueryContext
{
public bool WithNoTracking { get; set; }
}
and passing this to the query can allow us to exclude the data from being cached.
The text was updated successfully, but these errors were encountered:
Sometimes, we may want to query large data. We know that this data is for special purposes like reporting. So it does not need any internal caching. Internal caching can be very expensive when dealing with a large data set.
adding
and passing this to the query can allow us to exclude the data from being cached.
The text was updated successfully, but these errors were encountered: