Anatolii Grynchuk
584d036a09
Merge branch 'development'
2026-05-06 22:42:04 +03:00
Anatolii Grynchuk
1da2dd8579
fix: update RepositoryUrl in project files to correct domain
2026-05-06 22:41:21 +03:00
agrynco
b434383f7e
Merge pull request 'release: IT-631 fix EF repository base bugs' ( #12 ) from development into main
2026-05-06 12:50:16 +03:00
agrynco
3f1371e33a
Merge pull request 'fix: use GetByIdAsync in DeleteAsync(TEntityId)' ( #11 ) from IT-631-fix-delete-async-getbyid into development
2026-05-06 12:50:04 +03:00
Anatolii Grynchuk
9c1da388d8
fix: use GetByIdAsync in DeleteAsync(TEntityId)
...
Replaced sync GetById with await GetByIdAsync to avoid blocking the thread inside an async method.
Ref: #IT-631
2026-05-06 12:46:35 +03:00
agrynco
1edcafdebd
Merge pull request 'fix: eliminate multi-save in batch Add and DeleteAsync(TEntityId)' ( #10 ) from IT-631-fix-delete into development
2026-05-06 12:45:09 +03:00
Anatolii Grynchuk
93461fd35e
fix: eliminate multi-save in batch Add and DeleteAsync(TEntityId)
...
- Add(TEntity[]) now passes save:false in the loop and calls SaveChanges once at the end
- DeleteAsync(TEntityId) now calls DoRemove directly instead of Delete(TEntityId) to avoid the double-save from the sync overload chain
Ref: #IT-631
2026-05-06 12:43:27 +03:00
agrynco
52c9c9ab9e
Merge pull request 'chore: upgrade ef core 10.0.7' ( #9 ) from development into main
2026-05-06 02:20:53 +03:00
Anatolii Grynchuk
4020981eec
chore: upgrade ef core 8.0.15 -> 10.0.7
...
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-06 02:20:44 +03:00
agrynco
d7b7c2eb88
Merge pull request 'chore: downgrade ef core 8.0.15' ( #8 ) from development into main
2026-05-06 01:55:16 +03:00
Anatolii Grynchuk
2b02374b19
chore: downgrade ef core 9.0.5 -> 8.0.15
...
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-06 01:55:07 +03:00
agrynco
c630db2582
Merge pull request 'docs: switch task management and wiki to gitea, merge to development only for non-release changes' ( #7 ) from docs/gitea-workflow-agents into development
2026-05-06 01:29:15 +03:00
Anatolii Grynchuk
a58b4d9279
docs: switch task management and wiki to gitea, merge to development only for non-release changes
...
- remove YouTrack references from AGENTS.md
- use Gitea issues for task tracking
- merge to main only when a NuGet release is explicitly requested
- remove IT-642 link from README.md
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-06 01:29:01 +03:00
agrynco
1bab9c963d
Merge pull request 'feat: rebuild base repository hierarchy, add readme and agents' ( #6 ) from development into main
2026-05-06 01:16:30 +03:00
agrynco
23297f76f3
Merge pull request 'feat: rebuild base repository hierarchy, add readme and agents' ( #5 ) from fix/base-db-context-utcnow into development
2026-05-06 01:16:19 +03:00
Anatolii Grynchuk
15c58522ef
feat: rebuild base repository hierarchy, add readme and agents
...
- replace EfRepository/BaseDbContext/UtcValueConverter with BaseEfRepository and BaseRepository
- add IEfRepository interface hierarchy
- consolidate IEntity into Entity.cs, remove standalone IEntity.cs
- add PagedResult
- adjust all namespaces to HrynCo.DAL.Abstract / HrynCo.DAL.EF
- add README.md with solution overview, versioning rules, class diagram
- add AGENTS.md
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-06 01:15:59 +03:00
agrynco
6b68f099fa
Merge pull request 'feat: expose UtcNow property on BaseDbContext' ( #4 ) from development into main
2026-05-05 22:17:09 +03:00
agrynco
69e3ab6079
Merge pull request 'feat: expose UtcNow property on BaseDbContext' ( #3 ) from fix/base-db-context-utcnow into development
2026-05-05 22:17:06 +03:00
Anatolii Grynchuk
4fac3ddba9
feat: expose UtcNow property on BaseDbContext
...
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-05 22:16:53 +03:00
agrynco
b09777252b
Merge pull request 'feat: add BaseDbContext, non-generic IEntity, fix Entity constructor' ( #2 ) from development into main
2026-05-05 22:03:32 +03:00
agrynco
521ae31dce
Merge pull request 'feat: add BaseDbContext, non-generic IEntity, fix Entity constructor' ( #1 ) from fix/entity-base-improvements into development
2026-05-05 22:03:21 +03:00
Anatolii Grynchuk
6be7a0ceed
feat: add BaseDbContext, non-generic IEntity, fix Entity constructor
...
- add non-generic IEntity with Created/Updated only
- IEntity<TId> now extends IEntity
- remove Created = DateTimeOffset.UtcNow from Entity constructor
- add BaseDbContext with ApplyTimestamps, UtcValueConverter, DeleteBehavior.Restrict
- add UnexpectedEntityStateException
- add HrynCo.Common dependency to HrynCo.DAL.EF
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-05 22:02:30 +03:00
Anatolii Grynchuk
b7aec10ee0
chore: remove TeamCity pipeline YAMLs for general-checks and publish
2026-05-05 20:31:19 +03:00
Anatolii Grynchuk
b6f8b0f1f1
fix: use plain string for runs-on self-hosted
...
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-05 19:17:12 +03:00
Anatolii Grynchuk
d254873172
feat: initial solution with HrynCo.DAL.Abstract and HrynCo.DAL.EF
...
- HrynCo.DAL.Abstract: IEntity<TId>, Entity base classes, ITransaction, IUnitOfWork
- HrynCo.DAL.EF: EfRepository<TDbContext,TEntity>, EfUnitOfWork<TDbContext>, EfTransactionAdapter
- Directory.Packages.props with centralized EF Core 9.0.5 versions
- TeamCity pipeline YAMLs for general-checks and publish
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com >
2026-05-05 18:52:18 +03:00