CodeLiturgy.Dashboard/BlueWest.Api/Context/UserDbContext.cs

38 lines
1.1 KiB
C#
Raw Normal View History

2022-08-04 03:59:04 +03:00
using BlueWest.Data;
2022-08-22 00:14:50 +03:00
using BlueWest.WebApi.EF.Model;
2022-08-04 03:59:04 +03:00
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
2022-08-22 00:14:50 +03:00
namespace BlueWest.WebApi.EF
2022-08-04 03:59:04 +03:00
{
2022-08-13 06:35:36 +03:00
2022-08-22 00:14:50 +03:00
internal sealed class UserDbContext : DbContext
2022-08-18 22:59:13 +03:00
{
2022-08-22 00:14:50 +03:00
internal DbSet<User> Users { get; set; }
internal IConfiguration Configuration;
2022-08-18 22:59:13 +03:00
2022-08-19 02:02:57 +03:00
/// <summary>
/// Database for the context of database users
/// </summary>
/// <param name="options"></param>
2022-08-22 00:14:50 +03:00
internal UserDbContext(DbContextOptions<UserDbContext> options) : base(options)
2022-08-18 22:59:13 +03:00
{
Database.EnsureCreated();
}
2022-08-04 03:59:04 +03:00
2022-08-18 22:59:13 +03:00
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
/*optionsBuilder.UseMySql(
Configuration.GetConnectionString("LocalMySQL"),
new MySqlServerVersion(new Version(8, 0, 11))
);*/
}
2022-08-04 03:59:04 +03:00
2022-08-18 22:59:13 +03:00
protected override void OnModelCreating(ModelBuilder modelBuilder)
2022-08-04 03:59:04 +03:00
{
2022-08-18 22:59:13 +03:00
base.OnModelCreating(modelBuilder);
2022-08-20 05:47:32 +03:00
modelBuilder.ConfigureCurrentDbModel();
2022-08-18 22:59:13 +03:00
}
2022-08-04 03:59:04 +03:00
}
2022-08-18 22:59:13 +03:00
}