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

41 lines
1.1 KiB
C#
Raw Normal View History

2022-08-04 03:59:04 +03:00
using BlueWest.Data;
2022-08-20 05:47:32 +03:00
using BlueWest.WebApi.MySQL.Model;
2022-08-04 03:59:04 +03:00
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
2022-08-18 22:59:13 +03:00
namespace BlueWest.WebApi.MySQL
2022-08-04 03:59:04 +03:00
{
2022-08-13 06:35:36 +03:00
2022-08-20 05:47:32 +03:00
public sealed class UserDbContext : DbContext
2022-08-18 22:59:13 +03:00
{
public DbSet<User> Users { get; set; }
public IConfiguration Configuration;
2022-08-04 03:59:04 +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-18 22:59:13 +03:00
public UserDbContext(DbContextOptions<UserDbContext> options) : base(options)
{
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
}