mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
25 lines
661 B
C#
25 lines
661 B
C#
using Microsoft.Data.Sqlite;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Observatory.Framework.Files.Journal;
|
|
|
|
/// <summary>
|
|
/// An in-memory database context for Pulsar.
|
|
/// </summary>
|
|
public class PulsarContext : DbContext
|
|
{
|
|
public SqliteConnection Connection { get; private set; }
|
|
|
|
public DbSet<JournalBase> Journals { get; set; }
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
Connection = new SqliteConnection("Data Source=:memory:");
|
|
optionsBuilder.UseSqlite(Connection);
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
Connection.Dispose();
|
|
base.Dispose();
|
|
}
|
|
} |