AyCode.Core/AyCode.Core.Tests.Internal/Entities
Loretta 17daf0fef2 Document AcBinary wire format, sync docs, update conventions
- Add BINARY_FORMAT.md: full AcBinary wire format spec (markers, encoding, options, protocol, interactions)
- Reference BINARY_FORMAT.md from GLOSSARY.md, Binaries/README.md, and Serializers/Binaries/README.md; add new glossary terms
- Clarify and expand config options tables to match new doc
- Add/clarify LLM maintenance rules: always sync .md files with code, auto-fix discrepancies
- Update root README.md: AyCode.Core targets .NET 9, not 10; stress doc/code sync
- Add code reuse and doc sync conventions to copilot-instructions.md and CONVENTIONS.md
- Add docs/ folder and BINARY_FORMAT.md to solution as Solution Items
- Minor clarifications and cross-links in ARCHITECTURE.md and other docs
2026-03-29 09:11:57 +02:00
..
Address.cs refactoring, improvements, fixes, etc... 2024-05-01 17:07:48 +02:00
Company.cs DbContexts, EntityDbSets, EntityExtensions improvemens, fixes, etc.. 2024-05-29 08:56:06 +02:00
EmailMessage.cs refactoring, improvements, fixes, etc... 2024-05-01 17:07:48 +02:00
EmailRecipient.cs refactoring, improvements, fixes, etc... 2024-05-01 17:07:48 +02:00
Profile.cs refactoring, improvements, fixes, etc... 2024-05-01 17:07:48 +02:00
README.md Document AcBinary wire format, sync docs, update conventions 2026-03-29 09:11:57 +02:00
User.cs refactoring, improvements, fixes, etc... 2024-05-01 17:07:48 +02:00
UserToCompany.cs Add Profile to ServiceProvider; ServiceProvider to Company in progress... 2024-05-26 09:12:37 +02:00
UserToken.cs refactoring, improvements, fixes, etc... 2024-05-01 17:07:48 +02:00

README.md

Entities

Concrete entity implementations inheriting from AyCode.Entities abstract generics. Used by database integration tests.

Key Files

  • User.csAcUser<Profile, Company, UserToCompany, Address>.
  • Company.csAcCompany<User, UserToCompany, Profile, Address>.
  • UserToCompany.csAcUserToCompany<User, Company> junction entity.
  • Profile.csAcProfile<Address>.
  • Address.csAcAddress + IAcAddressDtoBase with DTO support.
  • UserToken.csAcUserTokenBase authentication token.
  • EmailMessage.csAcEmailMessage<EmailRecipient>.
  • EmailRecipient.csAcEmailRecipient<EmailMessage>.

Relationships

User ↔ Company (many-to-many via UserToCompany), User → Profile → Address (one-to-one chain), EmailMessage → EmailRecipient (one-to-many).