fix: use cedlab_Chart_UL2 (new SP, don't modify UL1); add correct SQL scripts with Prices table

This commit is contained in:
2026-05-27 16:28:26 +02:00
parent 44e2098584
commit a866a2f7d5
4 changed files with 297 additions and 2 deletions

View File

@@ -33,10 +33,10 @@ public class ChartDataServiceV2 : IChartDataServiceV2
await using var conn = new SqlConnection(_connectionString);
await conn.OpenAsync();
// ── 1. Metadata sottostanti (cedlab_Chart_UL1) ─────────────────
// ── 1. Metadata sottostanti (cedlab_Chart_UL2) ─────────────────
var underlyings = new List<ChartUlMetadata>();
await using (var cmd = new SqlCommand("cedlab_Chart_UL1", conn)
await using (var cmd = new SqlCommand("cedlab_Chart_UL2", conn)
{ CommandType = CommandType.StoredProcedure })
{
cmd.Parameters.AddWithValue("@isin", isin);