EntityFrameworkCore.Cacheable
EntityFrameworkCore.Cacheable copied to clipboard
EntityFrameworkCore second level cache
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.1 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...
The EF Core nuget packages needs to be updated to support .NET Core 3.0. When migrating from .NET Core 2.2 to 3.0 and EF Core to 3.0.0 assembly cannot be...
In some scenarios, we need to write this: ```csharp var dbContextOptions = new DbContextOptionsBuilder() .UseMySql(_connection); dbContextOptions.UseSecondLevelCache(); _options = dbContextOptions.Options; ``` instead this: ```csharp _options = new DbContextOptionsBuilder() .UseMySql(_connection) .UseSecondLevelCache().Options; ```...
Hi, man, I like this project! Please also continue update to EFCore 5.0
Correct interface name PS: Thanks for the great library
Is there any documentation that compares this project with https://github.com/VahidN/EFSecondLevelCache.Core? I'm curious as to what the differences between the two projects are.
I've tried out Cacheable, and found that it doesn't seem to register new changes to entities. I kinds of expected Cacheable to purge any entity that was modified using the...
Bugfix for #9
hi,I have a problem with it `var smallItems = await _context.posts.Where(a => a.TypeName == item).Take(10).Select(a => new TypeItemDto() { Title = a.Title, TypeName = a.TypeName, Time = a.CreateTime, Id =...
### Describe what is not working as expected. The cache doesn't seem to be "flushing" and going back to the database when a record is added after the query is...