Map ResultView to VWREC_RESULT with Table attribute

Explicitly map ResultView entity to "VWREC_RESULT" in the "dbo" schema using the [Table] attribute to ensure correct Entity Framework mapping.
This commit is contained in:
2025-12-17 09:38:32 +01:00
parent 9b3bb925f9
commit 38d819adac

View File

@@ -2,6 +2,7 @@
namespace ReC.Domain.Entities;
[Table("VWREC_RESULT", Schema = "dbo")]
public class ResultView
{
public long Id { get; set; }