From bfe6c12ee040c7b6ff5e84a70d7aa4b201f08d04 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 12 Jan 2026 12:50:05 +0100 Subject: [PATCH] Annotate ProfileView and add Actions property ProfileView is now mapped to the VWREC_PROFILE table using the [Table] attribute. Added an Actions property to support related RecActionView collections. --- src/ReC.Domain/Views/ProfileView.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ReC.Domain/Views/ProfileView.cs b/src/ReC.Domain/Views/ProfileView.cs index 4e94052..dc2710b 100644 --- a/src/ReC.Domain/Views/ProfileView.cs +++ b/src/ReC.Domain/Views/ProfileView.cs @@ -6,6 +6,8 @@ namespace ReC.Domain.Views; [Table("VWREC_PROFILE", Schema = "dbo")] public record ProfileView { + public virtual IEnumerable? Actions { get; init; } + public long Id { get; init; } public bool Active { get; init; }