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.
This commit is contained in:
2026-04-09 17:09:40 +02:00
parent f8ec6065c2
commit f449767bf9

View File

@@ -140,7 +140,9 @@ namespace EnvelopeGenerator.Domain.Entities
= false;
#endif
#if NETFRAMEWORK
[NotMapped]
#endif
[Column("DOC_RESULT")]
public byte[]
#if nullable