Remove Root property from ResultView entity

Removed the Root navigation property and its [ForeignKey("Id")] attribute from the ResultView class, as it is no longer needed. No other changes were made to the class structure.
This commit is contained in:
2025-12-17 12:50:48 +01:00
parent 48e9812224
commit 7c687c0541

View File

@@ -7,9 +7,6 @@ public class ResultView
{
public long Id { get; set; }
[ForeignKey("Id")]
public OutRes? Root { get; set; }
public long? ActionId { get; set; }
public RecActionView? Action { get; set; }