entity-framework-core-mock
entity-framework-core-mock copied to clipboard
Extend visitor of async provider to support ExecuteDelete and ExecuteUpdate
Currently, when using EF7 ExecuteUpdateAsync or ExecuteDeleteAsync, it will fail that given method is not found. Reason is, that internally EntityRewriter visitor will change type from IQueryable to IEnumerable and then it will not match method's arguments, thus failing to find it. This fixes the issue by simply skipping internal EntityRewriter and providing fake methods to call, because there's no implementation of those methods for IEnumerable.
Is this project still alive or not anymore?