├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── docfx_project ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── images │ ├── favicon.ico │ └── logo.png ├── index.md ├── templates │ └── darkfx │ │ ├── partials │ │ ├── affix.tmpl.partial │ │ ├── footer.tmpl.partial │ │ └── head.tmpl.partial │ │ └── styles │ │ ├── main.css │ │ └── toggle-theme.js └── toc.yml ├── docs ├── api │ ├── Calabonga.UnitOfWork.EnumerablePagedListExtensions.html │ ├── Calabonga.UnitOfWork.ExceptionHelper.html │ ├── Calabonga.UnitOfWork.IPagedList-1.html │ ├── Calabonga.UnitOfWork.IQueryablePageListExtensions.html │ ├── Calabonga.UnitOfWork.IRepository-1.html │ ├── Calabonga.UnitOfWork.IRepositoryFactory.html │ ├── Calabonga.UnitOfWork.IUnitOfWork-1.html │ ├── Calabonga.UnitOfWork.IUnitOfWork.html │ ├── Calabonga.UnitOfWork.PagedList-1.html │ ├── Calabonga.UnitOfWork.PagedList-2.html │ ├── Calabonga.UnitOfWork.PagedList.html │ ├── Calabonga.UnitOfWork.Repository-1.html │ ├── Calabonga.UnitOfWork.SaveChangesResult.html │ ├── Calabonga.UnitOfWork.UnitOfWork-1.html │ ├── Calabonga.UnitOfWork.UnitOfWorkServiceCollectionExtensions.html │ ├── Calabonga.UnitOfWork.html │ ├── index.html │ ├── toc.html │ └── toc.json ├── articles │ ├── intro.html │ └── toc.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── favicon.ico │ ├── logo │ └── logo.png ├── index.html ├── logo.svg ├── manifest.json ├── search-stopwords.json ├── styles │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── docfx.vendor.min.css │ ├── docfx.vendor.min.css.map │ ├── docfx.vendor.min.js │ ├── docfx.vendor.min.js.map │ ├── glyphicons-halflings-regular-ACNUA6UY.ttf │ ├── glyphicons-halflings-regular-JOUF32XT.woff │ ├── glyphicons-halflings-regular-PIHUWCJO.eot │ ├── glyphicons-halflings-regular-QXYEM3FU.svg │ ├── glyphicons-halflings-regular-W4DYDFZM.woff2 │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ ├── search-worker.js │ ├── search-worker.min.js │ ├── search-worker.min.js.map │ └── toggle-theme.js ├── toc.html ├── toc.json └── xrefmap.yml └── src ├── .editorconfig ├── Calabonga.UnitOfWork.sln └── Calabonga.UnitOfWork ├── Calabonga.UnitOfWork.csproj ├── EnumerablePagedListExtensions.cs ├── ExceptionHelper.cs ├── IQueryablePageListExtensions.cs ├── IRepository.cs ├── IRepositoryFactory.cs ├── IUnitOfWork.cs ├── IUnitOfWorkFactory.cs ├── Repository.cs ├── SaveChangesResult.cs ├── TrackingType.cs ├── UnitOfWork.cs ├── UnitOfWorkFactory.cs ├── UnitOfWorkFactoryServiceCollectionExtensions.cs ├── UnitOfWorkServiceCollectionExtensions.cs ├── favicon.ico └── logo.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.calabonga.net/site/thanks 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/README.md -------------------------------------------------------------------------------- /docfx_project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/.gitignore -------------------------------------------------------------------------------- /docfx_project/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/api/.gitignore -------------------------------------------------------------------------------- /docfx_project/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/api/index.md -------------------------------------------------------------------------------- /docfx_project/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/docfx.json -------------------------------------------------------------------------------- /docfx_project/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/images/favicon.ico -------------------------------------------------------------------------------- /docfx_project/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/images/logo.png -------------------------------------------------------------------------------- /docfx_project/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/index.md -------------------------------------------------------------------------------- /docfx_project/templates/darkfx/partials/affix.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/templates/darkfx/partials/affix.tmpl.partial -------------------------------------------------------------------------------- /docfx_project/templates/darkfx/partials/footer.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/templates/darkfx/partials/footer.tmpl.partial -------------------------------------------------------------------------------- /docfx_project/templates/darkfx/partials/head.tmpl.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/templates/darkfx/partials/head.tmpl.partial -------------------------------------------------------------------------------- /docfx_project/templates/darkfx/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/templates/darkfx/styles/main.css -------------------------------------------------------------------------------- /docfx_project/templates/darkfx/styles/toggle-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/templates/darkfx/styles/toggle-theme.js -------------------------------------------------------------------------------- /docfx_project/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docfx_project/toc.yml -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.EnumerablePagedListExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.EnumerablePagedListExtensions.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.ExceptionHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.ExceptionHelper.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.IPagedList-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.IPagedList-1.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.IQueryablePageListExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.IQueryablePageListExtensions.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.IRepository-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.IRepository-1.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.IRepositoryFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.IRepositoryFactory.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.IUnitOfWork-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.IUnitOfWork-1.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.IUnitOfWork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.IUnitOfWork.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.PagedList-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.PagedList-1.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.PagedList-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.PagedList-2.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.PagedList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.PagedList.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.Repository-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.Repository-1.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.SaveChangesResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.SaveChangesResult.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.UnitOfWork-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.UnitOfWork-1.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.UnitOfWorkServiceCollectionExtensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.UnitOfWorkServiceCollectionExtensions.html -------------------------------------------------------------------------------- /docs/api/Calabonga.UnitOfWork.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/Calabonga.UnitOfWork.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/api/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/api/toc.json -------------------------------------------------------------------------------- /docs/articles/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/articles/intro.html -------------------------------------------------------------------------------- /docs/articles/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/articles/toc.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/images/logo -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.vendor.min.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.vendor.min.css.map -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.vendor.min.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/docfx.vendor.min.js.map -------------------------------------------------------------------------------- /docs/styles/glyphicons-halflings-regular-ACNUA6UY.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/glyphicons-halflings-regular-ACNUA6UY.ttf -------------------------------------------------------------------------------- /docs/styles/glyphicons-halflings-regular-JOUF32XT.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/glyphicons-halflings-regular-JOUF32XT.woff -------------------------------------------------------------------------------- /docs/styles/glyphicons-halflings-regular-PIHUWCJO.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/glyphicons-halflings-regular-PIHUWCJO.eot -------------------------------------------------------------------------------- /docs/styles/glyphicons-halflings-regular-QXYEM3FU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/glyphicons-halflings-regular-QXYEM3FU.svg -------------------------------------------------------------------------------- /docs/styles/glyphicons-halflings-regular-W4DYDFZM.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/glyphicons-halflings-regular-W4DYDFZM.woff2 -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/main.css -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/styles/search-worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/search-worker.min.js -------------------------------------------------------------------------------- /docs/styles/search-worker.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/search-worker.min.js.map -------------------------------------------------------------------------------- /docs/styles/toggle-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/styles/toggle-theme.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/toc.json -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork.sln -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/Calabonga.UnitOfWork.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/Calabonga.UnitOfWork.csproj -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/EnumerablePagedListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/EnumerablePagedListExtensions.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/ExceptionHelper.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/IQueryablePageListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/IQueryablePageListExtensions.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/IRepository.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/IRepositoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/IRepositoryFactory.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/IUnitOfWorkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/IUnitOfWorkFactory.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/Repository.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/SaveChangesResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/SaveChangesResult.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/TrackingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/TrackingType.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/UnitOfWork.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/UnitOfWorkFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/UnitOfWorkFactory.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/UnitOfWorkFactoryServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/UnitOfWorkFactoryServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/UnitOfWorkServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/UnitOfWorkServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/favicon.ico -------------------------------------------------------------------------------- /src/Calabonga.UnitOfWork/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Calabonga/UnitOfWork/HEAD/src/Calabonga.UnitOfWork/logo.png --------------------------------------------------------------------------------