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>
This commit is contained in:
Anatolii Grynchuk
2026-05-05 22:02:30 +03:00
parent b7aec10ee0
commit 6be7a0ceed
7 changed files with 100 additions and 4 deletions
-2
View File
@@ -14,12 +14,10 @@ public abstract class Entity : Entity<Guid>
protected Entity()
{
Id = Guid.NewGuid();
Created = DateTimeOffset.UtcNow;
}
protected Entity(Guid id)
{
Id = id;
Created = DateTimeOffset.UtcNow;
}
}