arch / UnitOfWork

A plugin for Microsoft.EntityFrameworkCore to support repository, unit of work patterns, multiple database with distributed transaction supported, and MySQL multiple databases/tables sharding supported.
MIT License
1.34k stars 343 forks source link

Async cancellation token for all #149

Open djechelon opened 3 years ago

djechelon commented 3 years ago

Added optional CancellationToken to every method.

It is always recommended by linters to use the CancellationToken where available. EF fully supports CancellationToken for every async method.

This implementation has no backwards side-effects.