Add scoreMessage

This commit is contained in:
2025-07-17 21:07:10 +07:00
parent d40ee7a86e
commit 7de18673f9
9 changed files with 54 additions and 24 deletions

View File

@@ -104,6 +104,7 @@ public class BacktestRepository : IBacktestRepository
.Include(b => b.StartDate)
.Include(b => b.EndDate)
.Include(b => b.Score)
.Include(b => b.ScoreMessage)
.Include(b => b.Config)
.Include(b => b.Fees)
.Include(b => b.Statistics);
@@ -232,6 +233,7 @@ public class BacktestRepository : IBacktestRepository
.Include(b => b.StartDate)
.Include(b => b.EndDate)
.Include(b => b.Score)
.Include(b => b.ScoreMessage)
.Include(b => b.Config)
.Include(b => b.Fees)
.Include(b => b.Statistics);