Getting Started
1. Install the package
Section titled “1. Install the package”<PackageReference Include="Pragmatic.Notes" />Typical companion packages:
<PackageReference Include="Pragmatic.Persistence" /><PackageReference Include="Pragmatic.Endpoints" />2. Mark the entity
Section titled “2. Mark the entity”[Entity<Guid>][Resource("reservations")][HasNotes(MaxLength = 4000, EditWindowMinutes = 60)]public partial class Reservation{ public string GuestName { get; set; } = "";}3. Build and use
Section titled “3. Build and use”The generated note feature provides internal note actions and, when endpoints are enabled, note routes under the parent entity.