From f449767bf9d3a79a057766df7762e48706deb1df Mon Sep 17 00:00:00 2001 From: TekH Date: Thu, 9 Apr 2026 17:09:40 +0200 Subject: [PATCH] Add [NotMapped] for Envelope property on .NET Framework Applied the [NotMapped] attribute to a property in the Envelope class when targeting .NET Framework, ensuring it is not mapped to a database column by Entity Framework in that environment. No changes for other frameworks. --- EnvelopeGenerator.Domain/Entities/Envelope.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EnvelopeGenerator.Domain/Entities/Envelope.cs b/EnvelopeGenerator.Domain/Entities/Envelope.cs index 0889022a..965da678 100644 --- a/EnvelopeGenerator.Domain/Entities/Envelope.cs +++ b/EnvelopeGenerator.Domain/Entities/Envelope.cs @@ -140,7 +140,9 @@ namespace EnvelopeGenerator.Domain.Entities = false; #endif +#if NETFRAMEWORK [NotMapped] +#endif [Column("DOC_RESULT")] public byte[] #if nullable