/
Laxerem
/
BaskBot
Обзор
Документация
Войти
/
Laxerem
/
BaskBot
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
BaskBot.Database/DatabaseContext.cs
18 строк
546 B
Laxerem
Starting create a database
03 янв 2026, 18:05
03 янв 2026, 18:05
fc5de48
Код
Авторство
О чём код?
using BaskBot.Core.Entities; using BaskBot.Database.Configurations; using Microsoft.EntityFrameworkCore; namespace BaskBot.Database; public class DatabaseContext : DbContext { public DbSet<User> Users { get; set; } public DatabaseContext(DbContextOptions<DatabaseContext> options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.ApplyConfiguration(new AssistantConfiguration()); modelBuilder.ApplyConfiguration(new UserConfiguration()); } }