1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-10-17 12:42:51 +02:00
Minecraft-Phantom-Panel/Server/Phantom.Server.Database/Factories/InstanceEntityUpsert.cs

15 lines
462 B
C#

using Microsoft.EntityFrameworkCore;
using Phantom.Server.Database.Entities;
namespace Phantom.Server.Database.Factories;
public sealed class InstanceEntityUpsert : AbstractUpsertHelper<InstanceEntity> {
internal InstanceEntityUpsert(ApplicationDbContext ctx) : base(ctx) {}
private protected override DbSet<InstanceEntity> Set => Ctx.Instances;
private protected override InstanceEntity Construct(Guid guid) {
return new InstanceEntity(guid);
}
}