oliverbooth.dev/OliverBooth/Data/Web/WebContext.cs

77 lines
2.8 KiB
C#
Raw Normal View History

2023-08-16 13:09:43 +00:00
using Microsoft.EntityFrameworkCore;
using OliverBooth.Data.Web.Configuration;
namespace OliverBooth.Data.Web;
/// <summary>
/// Represents a session with the web database.
/// </summary>
2023-08-16 13:09:43 +00:00
internal sealed class WebContext : DbContext
{
private readonly IConfiguration _configuration;
/// <summary>
/// Initializes a new instance of the <see cref="WebContext" /> class.
/// </summary>
/// <param name="configuration">The configuration.</param>
public WebContext(IConfiguration configuration)
{
_configuration = configuration;
}
2023-12-14 16:03:24 +00:00
/// <summary>
/// Gets the collection of books in the reading list.
/// </summary>
/// <value>The collection of books.</value>
public DbSet<Book> Books { get; private set; } = null!;
2023-12-22 14:26:18 +00:00
/// <summary>
/// Gets the collection of blacklist entries in the database.
/// </summary>
/// <value>The collection of blacklist entries.</value>
public DbSet<BlacklistEntry> ContactBlacklist { get; private set; } = null!;
/// <summary>
/// Gets the collection of programming languages in the database.
/// </summary>
/// <value>The collection of programming languages.</value>
public DbSet<ProgrammingLanguage> ProgrammingLanguages { get; private set; } = null!;
2023-09-24 13:36:36 +00:00
/// <summary>
/// Gets the collection of projects in the database.
/// </summary>
/// <value>The collection of projects.</value>
public DbSet<Project> Projects { get; private set; } = null!;
/// <summary>
/// Gets the set of site configuration items.
/// </summary>
/// <value>The set of site configuration items.</value>
public DbSet<SiteConfiguration> SiteConfiguration { get; private set; } = null!;
/// <summary>
/// Gets the collection of templates in the database.
/// </summary>
/// <value>The collection of templates.</value>
public DbSet<Template> Templates { get; private set; } = null!;
/// <inheritdoc />
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
string connectionString = _configuration.GetConnectionString("Web") ?? string.Empty;
ServerVersion serverVersion = ServerVersion.AutoDetect(connectionString);
optionsBuilder.UseMySql(connectionString, serverVersion);
}
/// <inheritdoc />
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
2023-12-22 14:26:18 +00:00
modelBuilder.ApplyConfiguration(new BlacklistEntryConfiguration());
2023-12-14 16:03:24 +00:00
modelBuilder.ApplyConfiguration(new BookConfiguration());
modelBuilder.ApplyConfiguration(new ProgrammingLanguageConfiguration());
2023-09-24 13:36:36 +00:00
modelBuilder.ApplyConfiguration(new ProjectConfiguration());
modelBuilder.ApplyConfiguration(new TemplateConfiguration());
modelBuilder.ApplyConfiguration(new SiteConfigurationConfiguration());
}
}