mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
72 lines
3.1 KiB
C#
72 lines
3.1 KiB
C#
using Microsoft.Data.Sqlite;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Observatory.Framework.Files.Journal;
|
|
using Observatory.Framework.Files.Journal.Odyssey;
|
|
using Observatory.Framework.Files.Journal.Startup;
|
|
using Observatory.Framework.Files.Journal.StationServices;
|
|
using Observatory.Framework.Files.Journal.Travel;
|
|
using Pulsar.Features.ShipLocker;
|
|
|
|
/// <summary>
|
|
/// An in-memory database context for Pulsar.
|
|
/// </summary>
|
|
public class PulsarContext : DbContext
|
|
{
|
|
public SqliteConnection Connection { get; private set; }
|
|
|
|
|
|
public DbSet<Commander> Commander { get; set; }
|
|
public DbSet<Materials> Materials { get; set; }
|
|
public DbSet<Rank> Rank { get; set; }
|
|
public DbSet<Progress> Progress { get; set; }
|
|
public DbSet<Reputation> Reputation { get; set; }
|
|
public DbSet<EngineerProgress> EngineerProgress { get; set; }
|
|
public DbSet<LoadGame> LoadGames { get; set; }
|
|
public DbSet<Statistics> Statistics { get; set; }
|
|
public DbSet<Location> Locations { get; set; }
|
|
public DbSet<Powerplay> PowerPlay { get; set; }
|
|
public DbSet<ShipLockerMaterials> ShipLocker { get; set; }
|
|
public DbSet<Missions> Missions { get; set; }
|
|
public DbSet<Loadout> Loadout { get; set; }
|
|
public DbSet<Cargo> Cargo { get; set; }
|
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
Connection = new SqliteConnection("Data Source=Journals.sqlite");
|
|
optionsBuilder.UseSqlite(Connection);
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
modelBuilder.ApplyConfigurationsFromAssembly(typeof(PulsarContext).Assembly);
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
if (Database.ProviderName != "Microsoft.EntityFrameworkCore.Sqlite") return;
|
|
// SQLite does not have proper support for DateTimeOffset via Entity Framework Core, see the limitations
|
|
// here: https://docs.microsoft.com/en-us/ef/core/providers/sqlite/limitations#query-limitations
|
|
// To work around this, when the Sqlite database provider is used, all model properties of type DateTimeOffset
|
|
// use the DateTimeOffsetToBinaryConverter
|
|
// Based on: https://github.com/aspnet/EntityFrameworkCore/issues/10784#issuecomment-415769754
|
|
// This only supports millisecond precision, but should be sufficient for most use cases.
|
|
foreach (var entityType in modelBuilder.Model.GetEntityTypes())
|
|
{
|
|
var properties = entityType.ClrType.GetProperties().Where(p => p.PropertyType == typeof(DateTimeOffset)
|
|
|| p.PropertyType == typeof(DateTimeOffset?));
|
|
foreach (var property in properties)
|
|
{
|
|
modelBuilder
|
|
.Entity(entityType.Name)
|
|
.Property(property.Name)
|
|
.HasConversion(new DateTimeOffsetToBinaryConverter());
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
Connection.Dispose();
|
|
base.Dispose();
|
|
}
|
|
} |