using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace sirkettodo.Pages.EntityFramework { public class MyConnection : DbContext { public MyConnection(DbContextOptions options) : base(options) { } public DbSet projects { get; set; } public DbSet users { get; set; } public DbSet tasks { get; set; } public DbSet team { get; set; } public DbSet role { get; set; } public DbSet task_assignment { get; set; } } }