Oliver Booth
0a9c2e82d5
CORS was "cors"ing some issues (heh). But also it is easier to maintain this way. Development was made much more difficult when I separated it. Combining it all also improves SEO
56 lines
1.9 KiB
C#
56 lines
1.9 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using OliverBooth.Data.Blog.Configuration;
|
|
|
|
namespace OliverBooth.Data.Blog;
|
|
|
|
/// <summary>
|
|
/// Represents a session with the blog database.
|
|
/// </summary>
|
|
internal sealed class BlogContext : DbContext
|
|
{
|
|
private readonly IConfiguration _configuration;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="BlogContext" /> class.
|
|
/// </summary>
|
|
/// <param name="configuration">The configuration.</param>
|
|
public BlogContext(IConfiguration configuration)
|
|
{
|
|
_configuration = configuration;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the collection of blog posts in the database.
|
|
/// </summary>
|
|
/// <value>The collection of blog posts.</value>
|
|
public DbSet<BlogPost> BlogPosts { 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!;
|
|
|
|
/// <summary>
|
|
/// Gets the collection of users in the database.
|
|
/// </summary>
|
|
/// <value>The collection of users.</value>
|
|
public DbSet<User> Users { get; private set; } = null!;
|
|
|
|
/// <inheritdoc />
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
string connectionString = _configuration.GetConnectionString("Blog") ?? string.Empty;
|
|
ServerVersion serverVersion = ServerVersion.AutoDetect(connectionString);
|
|
optionsBuilder.UseMySql(connectionString, serverVersion);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
modelBuilder.ApplyConfiguration(new BlogPostConfiguration());
|
|
modelBuilder.ApplyConfiguration(new TemplateConfiguration());
|
|
modelBuilder.ApplyConfiguration(new UserConfiguration());
|
|
}
|
|
}
|