mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
15 lines
560 B
C#
15 lines
560 B
C#
namespace Pulsar.Context.Configuration;
|
|
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using Observatory.Framework.Files.Journal.Odyssey;
|
|
|
|
public class ShipLockerConfiguration : IEntityTypeConfiguration<ShipLockerMaterials>
|
|
{
|
|
public void Configure(EntityTypeBuilder<ShipLockerMaterials> builder)
|
|
{
|
|
builder.OwnsMany(b => b.Items, b => b.ToJson());
|
|
builder.OwnsMany(b => b.Components, b => b.ToJson());
|
|
builder.OwnsMany(b => b.Consumables, b => b.ToJson());
|
|
builder.OwnsMany(b => b.Data, b => b.ToJson());
|
|
}
|
|
} |