AyCode.Core/AyCode.Entities.Server
Loretta ffd537b5eb Refactor: Split and expand project-level documentation
- Move all major feature docs (logging, binary, SignalR, DataSource) into per-project `docs/` folders with dedicated Markdown files.
- Split monolithic docs into focused files: `BINARY_FORMAT.md`, `BINARY_FEATURES.md`, `BINARY_OPTIONS.md`, `LOGGING.md`, `LOGGING_SERVER.md`, `LOGGING_REMOTE.md`, `SIGNALR.md`, `SIGNALR_SERVER.md`, `SIGNALR_DATASOURCE.md`.
- Update all references in `README.md`, `copilot-instructions.md`, `GLOSSARY.md`, and `ARCHITECTURE.md` to point to the correct per-project doc.
- Add documentation tables to each project’s `README.md` and clarify folder structure.
- Update `.csproj` files to include `docs/**/*.md` for packaging.
- Remove obsolete/moved docs from the solution file.
- Ensure all technical debt warnings and cross-references are preserved and accurate.
- No code changes; documentation only.
2026-03-29 22:16:28 +02:00
..
LogItems Refactor: Split and expand project-level documentation 2026-03-29 22:16:28 +02:00
AyCode.Entities.Server.csproj Add .targets file 2025-08-31 13:07:34 +02:00
README.md Document AcBinary wire format, sync docs, update conventions 2026-03-29 09:11:57 +02:00

README.md

AyCode.Entities.Server

Server-side entity implementations extending AyCode.Entities. Currently contains the database-persistable log item entity.

Key Files

LogItems/

  • IAcLogItem.cs — Interface extending IAcLogItemClient + IEntityInt. Adds int LogHeaderId for log header foreign key.
  • AcLogItem.cs — Concrete log item entity mapped to [Table("LogItem")]. Inherits AcLogItemClient, implements IAcLogItem. Auto-increment int Id primary key. MessagePack-serializable with [MessagePackObject].

Dependencies

Dependency Purpose
AyCode.Core Enums, loggers
AyCode.Entities AcLogItemClient base class
AyCode.Utils Shared utilities
MessagePack.Annotations [MessagePackObject], [Key] for serialization