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