using ASC.Common; using ASC.Core.Common.EF.Model; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; namespace ASC.Core.Common.EF.Context { public class MySqlTelegramDbContext : TelegramDbContext { } public class PostgreSqlTelegramDbContext : TelegramDbContext { } public class TelegramDbContext : BaseDbContext { public DbSet Users { get; set; } public TelegramDbContext() { } public TelegramDbContext(DbContextOptions options) : base(options) { } protected override Dictionary> ProviderContext { get { return new Dictionary>() { { Provider.MySql, () => new MySqlTelegramDbContext() } , { Provider.Postrge, () => new PostgreSqlTelegramDbContext() } , }; } } protected override void OnModelCreating(ModelBuilder modelBuilder) { ModelBuilderWrapper .From(modelBuilder, Provider) .AddTelegramUsers(); } } public static class TelegramDbContextExtension { public static DIHelper AddTelegramDbContextService(this DIHelper services) { return services.AddDbContextManagerService(); } } }