58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using SharedLibraryCore.Database.Models;
|
|||
|
using System;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SharedLibraryCore.Database
|
|||
|
{
|
|||
|
public class ContextSeed
|
|||
|
{
|
|||
|
private DatabaseContext context;
|
|||
|
|
|||
|
public ContextSeed(DatabaseContext ctx)
|
|||
|
{
|
|||
|
context = ctx;
|
|||
|
}
|
|||
|
|
|||
|
public async Task Seed()
|
|||
|
{
|
|||
|
if (context.AliasLinks.Count() == 0)
|
|||
|
{
|
|||
|
context.AliasLinks.Add(new EFAliasLink()
|
|||
|
{
|
|||
|
AliasLinkId = 1
|
|||
|
});
|
|||
|
|
|||
|
var currentAlias = new EFAlias()
|
|||
|
{
|
|||
|
AliasId = 1,
|
|||
|
Active = true,
|
|||
|
DateAdded = DateTime.UtcNow,
|
|||
|
IPAddress = 0,
|
|||
|
Name = "IW4MAdmin",
|
|||
|
LinkId = 1
|
|||
|
};
|
|||
|
|
|||
|
context.Aliases.Add(currentAlias);
|
|||
|
|
|||
|
context.Clients.Add(new EFClient()
|
|||
|
{
|
|||
|
ClientId = 1,
|
|||
|
Active = false,
|
|||
|
Connections = 0,
|
|||
|
FirstConnection = DateTime.UtcNow,
|
|||
|
LastConnection = DateTime.UtcNow,
|
|||
|
Level = Objects.Player.Permission.Console,
|
|||
|
Masked = true,
|
|||
|
NetworkId = 0,
|
|||
|
AliasLinkId = 1,
|
|||
|
CurrentAliasId = 1,
|
|||
|
});
|
|||
|
|
|||
|
await context.SaveChangesAsync();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|