namespace Pulsar.Context.Configuration; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; using Observatory.Framework.Files.Journal.StationServices; public class EngineerProgressConfiguration : IEntityTypeConfiguration { public void Configure(EntityTypeBuilder builder) { builder.HasKey(x => x.Timestamp); builder.OwnsMany(x => x.Engineers, b => { b.ToJson(); }); } }