Bundle from worker to grain

This commit is contained in:
2025-09-15 12:56:59 +07:00
parent 77e6ce0789
commit 63bc7bbe59
19 changed files with 2112 additions and 79 deletions

View File

@@ -15,8 +15,7 @@ public class BacktestEntity
public string Identifier { get; set; } = string.Empty;
[Required]
[MaxLength(255)]
public string RequestId { get; set; } = string.Empty;
public Guid RequestId { get; set; }
[Required]
[Column(TypeName = "decimal(18,8)")]

View File

@@ -12,8 +12,7 @@ public class BundleBacktestRequestEntity
public int Id { get; set; }
[Required]
[MaxLength(255)]
public string RequestId { get; set; } = string.Empty;
public Guid RequestId { get; set; }
// Foreign key to User entity
public int? UserId { get; set; }