From 69821e64c67bbde2683ada90bd9169f95d681f2d Mon Sep 17 00:00:00 2001 From: TekH Date: Tue, 14 Oct 2025 10:53:19 +0200 Subject: [PATCH] refactor(Document): update Document entity structure and file properties - Moved file-related properties (Filename, Filepath, FileNameOriginal) into dedicated region - Added column mappings for file-related properties - Changed Elements type to IEnumerable for better abstraction - Adjusted EnvelopeId default initialization for NETFRAMEWORK only - Updated ByteData and nullable types for NET compatibility - Removed obsolete default value and simplified property definitions --- EnvelopeGenerator.Domain/Entities/Document.cs | 38 +++++++++++++------ 1 file changed, 27 insertions(+), 11 deletions(-) diff --git a/EnvelopeGenerator.Domain/Entities/Document.cs b/EnvelopeGenerator.Domain/Entities/Document.cs index c4c9910f..db4f02d7 100644 --- a/EnvelopeGenerator.Domain/Entities/Document.cs +++ b/EnvelopeGenerator.Domain/Entities/Document.cs @@ -31,17 +31,39 @@ public class Document : IHasEnvelope [Required] [Column("ENVELOPE_ID")] - public int EnvelopeId { get; set; } = 0; + public int EnvelopeId { get; set; } +#if NETFRAMEWORK + = 0; +#endif [Column("BYTE_DATA", TypeName = "varbinary(max)")] - public byte[] ByteData { get; set; } + public byte[] +#if NET + ? +#endif + ByteData { get; set; } - public List Elements { get; set; } + #region File + [Column("FILENAME", TypeName = "nvarchar(256)")] + public string Filename { get; set; } - // TODO: * Check the Form App and remove the default value - [NotMapped] + [Column("FILEPATH", TypeName = "nvarchar(256)")] public string Filepath { get; set; } + [Column("FILENAME_ORIGINAL", TypeName = "nvarchar(256)")] + public string +#if NET + ? +#endif + FileNameOriginal { get; set; } + #endregion + + public virtual List +#if NET + ? +#endif + Elements { get; set; } + [ForeignKey("EnvelopeId")] public virtual Envelope #if NET @@ -50,15 +72,9 @@ public class Document : IHasEnvelope Envelope { get; set; } #if NETFRAMEWORK - [NotMapped] - public string FileNameOriginal { get; set; } - [NotMapped] public bool IsTempFile { get; set; } - [NotMapped] - public string Filename { get; set; } - [NotMapped] public Bitmap Thumbnail { get; set; }