AyCode.Core/AyCode.Core.Tests.Internal/Entities
Loretta cdcb200643 Add LLM onboarding docs and standardize project READMEs
- Introduced `.github/copilot-instructions.md` as the single source of truth for domain rules, conventions, and pitfalls in each solution.
- Added `CLAUDE.md` to guide Claude to read domain rules, glossary, and README before code generation.
- Updated all solution and project `README.md` files to document project purpose, structure, key files, and LLM context (Copilot/Claude/Cursor).
- Added or revised `docs/ARCHITECTURE.md`, `docs/CONVENTIONS.md`, and `docs/GLOSSARY.md` to clarify dependency graphs, naming, patterns, and terminology.
- For FruitBankHybridApp, added `docs/SCHEMA.md` (Toon format) and expanded the glossary with business/measurement terms and common traps.
- Updated all subfolder READMEs to list key files, conventions, and LLM maintenance notes.
- Ensured all documentation is cross-referenced, up-to-date, and includes explicit instructions for LLMs to keep docs in sync with code and avoid suggesting removal/rollback as a solution.
- Standardized documentation and onboarding for maintainability and LLM/code quality across all solutions.
2026-03-28 22:38:23 +01: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 Add LLM onboarding docs and standardize project READMEs 2026-03-28 22:38:23 +01: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).


LLM Maintenance: If you modify code in this folder, update this README to reflect the changes. If you notice the README content does not match the current code, automatically update the README to match the code.