feat(fundamentals): preserve ticker selection and add deterministic key executives sorting

This commit is contained in:
2026-08-15 19:30:04 +02:00
parent 960a4bdbd6
commit 7e18257e3e
11 changed files with 942 additions and 235 deletions
@@ -77,6 +77,8 @@ public class FundamentalsDbContext : DbContext
modelBuilder.Entity<KeyExecutiveEntity>(entity =>
{
entity.HasKey(e => e.Id);
entity.Property(e => e.SortOrder).HasDefaultValue(0);
entity.HasIndex(e => new { e.AssetDataIsin, e.SortOrder });
});
modelBuilder.Entity<AssetEventEntity>(entity =>