AyCode.Core/AyCode.Entities.Server
Loretta 541cebbed8 Update README links to use code-style paths for docs
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.
2026-03-30 08:01:05 +02:00
..
LogItems Update README links to use code-style paths for docs 2026-03-30 08:01:05 +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