Replaced Markdown links with plain code-style paths in all README.md files for consistency. Updated references to logging, SignalR, and dynamic method dispatch documentation. Clarified some documentation paths and improved consistency in context/architecture sections. No code changes—documentation only. |
||
|---|---|---|
| .. | ||
| AcLoggerDbContextBase.cs | ||
| IAcLoggerDbContextBase.cs | ||
| README.md | ||
README.md
DbContexts / Loggers
Logger-specific EF Core DbContext with NoTracking query behavior for read performance. Used by AcDbLogItemWriter to persist log items.
For full logging architecture see
docs/LOGGING.md.
Key Files
IAcLoggerDbContextBase.cs— Interface extendingIAcLogItemDbSetBase<TLogItem>for log item DbSet.AcLoggerDbContextBase.cs— Generic implementation (AcDbContextBasesubclass). ConfiguresQueryTrackingBehavior.NoTrackingfor read performance. ExposesDbSet<TLogItem> LogItems.