using Microsoft.EntityFrameworkCore; using kehati.Models.Entity.Master; using kehati.Models.Entity; namespace kehati.Database { public class ApplicationDbContext : DbContext { public ApplicationDbContext( DbContextOptions options ) : base(options) { } public DbSet User { get; set; } public DbSet Lokasi { get; set; } public DbSet Famili { get; set; } public DbSet Group { get; set; } public DbSet Habitat { get; set; } public DbSet LokasiTumbuhan { get; set; } public DbSet Menu { get; set; } public DbSet Tumbuhan { get; set; } public DbSet Fauna { get; set; } } }