using Microsoft.EntityFrameworkCore; namespace API_development { public class ApplicationContext:DbContext { //перечень всех таблиц в базе данных public DbSet tbUsers { get; set; } public DbSet tbHobbies { get; set; } public DbSet tbUserHobbies { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer(BaseConnect.SQLConnection); } } }