Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ombak/20de7c284ac2885d1285eceba74cea19 to your computer and use it in GitHub Desktop.
Save ombak/20de7c284ac2885d1285eceba74cea19 to your computer and use it in GitHub Desktop.
namespace RazorPagesMovie.Models
{
public class SiswaContext : DbContext
{
public SiswaContext(DbContextOptions<siswacontext> options) : base(options)
{
}
public DbSet<siswa> Siswa { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment